Merge branch '1.1.4.1' into development

This commit is contained in:
Martin Kemp 2014-08-31 12:01:51 +01:00
commit 75801cbdc8
6 changed files with 11 additions and 2 deletions

1
.gitignore vendored
View File

@ -10,3 +10,4 @@ config/.history
Thumbs.db Thumbs.db
*.exe *.exe
build/ build/
Version v*

Binary file not shown.

BIN
msvcp120.dll Normal file

Binary file not shown.

Binary file not shown.

BIN
msvcr120.dll Normal file

Binary file not shown.

View File

@ -1,3 +1,11 @@
function Ensure-Exists ($path) {
if (-not (Test-Path $path)) {
Write-Error "Missing required $path! Ensure it is installed"
exit 1
}
return $true > $null
}
function Ensure-Executable ($command) { function Ensure-Executable ($command) {
try { Get-Command $command -ErrorAction Stop > $null } try { Get-Command $command -ErrorAction Stop > $null }
catch { catch {