From f45ba9fc72590a5f5eabae6151966507d68b60fe Mon Sep 17 00:00:00 2001 From: FrancisANDRE Date: Tue, 5 Apr 2016 08:30:10 +0200 Subject: [PATCH] Use PowerShell for Cygwin build commands. Signed-off-by: FrancisANDRE --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f143753b8..f6ef1b692 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -375,10 +375,10 @@ build_script: if ($env:builder -eq "cygwin") { $LastExitCode=0; - $cmd='bash.exe configure --everything';$cmd; + $cmd='bash.exe configure --everything';iex "& $cmd" Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode; $LastExitCode=0; - $cmd='make.exe -s'; + $cmd='make.exe -s';iex "& $cmd" Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode; } if ($env:builder -eq "msbuild")