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

3
.gitignore vendored
View File

@ -9,4 +9,5 @@ vendor/*
config/.history
Thumbs.db
*.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) {
try { Get-Command $command -ErrorAction Stop > $null }
catch {
@ -47,4 +55,4 @@ function Flatten-Directory ($name) {
function Digest-MD5 ($path) {
return Invoke-Expression "md5sum $path"
}
}