diff options
author | Tristan Gingold <tgingold@free.fr> | 2017-06-12 21:17:04 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2017-06-13 06:34:21 +0200 |
commit | a74aa51c8c4e4a891cb51f19f53aadc0ae080b38 (patch) | |
tree | a08dbc0893c12e3de6888e94fd92c9cbd7cf8ab5 | |
parent | c3c93eb70222eb0d0e0d9eec8b09fc53329cc608 (diff) | |
download | ghdl-a74aa51c8c4e4a891cb51f19f53aadc0ae080b38.tar.gz ghdl-a74aa51c8c4e4a891cb51f19f53aadc0ae080b38.tar.bz2 ghdl-a74aa51c8c4e4a891cb51f19f53aadc0ae080b38.zip |
appveyor/build.ps1: exit with the status of make.
-rw-r--r-- | dist/windows/appveyor/build.ps1 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/dist/windows/appveyor/build.ps1 b/dist/windows/appveyor/build.ps1 index 4f1de95d2..844bfba9a 100644 --- a/dist/windows/appveyor/build.ps1 +++ b/dist/windows/appveyor/build.ps1 @@ -48,7 +48,10 @@ function Restore-NativeCommandStream Write-Host "Building GHDL and libraries..." -Foreground Yellow cd $env:GHDL_BUILD_DIR + c:\msys64\usr\bin\make.exe 2>&1 | Restore-NativeCommandStream | %{ "$_" } +$Err = $LastExitCode cd $env:APPVEYOR_BUILD_FOLDER -exit 0 + +exit $Err |