Use PowerShell for Cygwin build commands.

Signed-off-by: FrancisANDRE <zosrothko@orange.fr>
This commit is contained in:
FrancisANDRE 2016-04-05 08:30:10 +02:00
parent 68a1b105ee
commit f45ba9fc72

View File

@ -375,10 +375,10 @@ build_script:
if ($env:builder -eq "cygwin") if ($env:builder -eq "cygwin")
{ {
$LastExitCode=0; $LastExitCode=0;
$cmd='bash.exe configure --everything';$cmd; $cmd='bash.exe configure --everything';iex "& $cmd"
Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode; Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode;
$LastExitCode=0; $LastExitCode=0;
$cmd='make.exe -s'; $cmd='make.exe -s';iex "& $cmd"
Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode; Write-Host -ForegroundColor Yellow $cmd ' LastExitCode=' $lastExitCode;
} }
if ($env:builder -eq "msbuild") if ($env:builder -eq "msbuild")