diff options
author | Rob Mensching <rob@firegiant.com> | 2020-06-04 10:25:04 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-06-04 11:32:20 -0700 |
commit | 90f501f6ad35a060fbb404f6a3eeaf1ac50e1a3c (patch) | |
tree | 79a1b6b0ed60af29ad1cb9bdd6a186b4702c61ec /appveyor.cmd | |
parent | 0dfddf11df6d5c06b40bfaabca116dea7717e801 (diff) | |
download | wix-90f501f6ad35a060fbb404f6a3eeaf1ac50e1a3c.tar.gz wix-90f501f6ad35a060fbb404f6a3eeaf1ac50e1a3c.tar.bz2 wix-90f501f6ad35a060fbb404f6a3eeaf1ac50e1a3c.zip |
Fail build if any command fails in the build batch file
Diffstat (limited to 'appveyor.cmd')
-rw-r--r-- | appveyor.cmd | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/appveyor.cmd b/appveyor.cmd index 27374ae5..c86a4c8c 100644 --- a/appveyor.cmd +++ b/appveyor.cmd | |||
@@ -2,13 +2,13 @@ | |||
2 | @pushd %~dp0 | 2 | @pushd %~dp0 |
3 | @set _P=%~dp0build\Release\publish | 3 | @set _P=%~dp0build\Release\publish |
4 | 4 | ||
5 | dotnet test -c Release src\test\WixToolsetTest.CoreIntegration | 5 | dotnet test -c Release src\test\WixToolsetTest.CoreIntegration || exit /b %ERRORLEVEL% |
6 | 6 | ||
7 | dotnet pack -c Release src\WixToolset.Core | 7 | dotnet pack -c Release src\WixToolset.Core || exit /b %ERRORLEVEL% |
8 | dotnet pack -c Release src\WixToolset.Core.Burn | 8 | dotnet pack -c Release src\WixToolset.Core.Burn || exit /b %ERRORLEVEL% |
9 | dotnet pack -c Release src\WixToolset.Core.WindowsInstaller | 9 | dotnet pack -c Release src\WixToolset.Core.WindowsInstaller || exit /b %ERRORLEVEL% |
10 | 10 | ||
11 | dotnet pack -c Release src\WixToolset.Core.TestPackage | 11 | dotnet pack -c Release src\WixToolset.Core.TestPackage || exit /b %ERRORLEVEL% |
12 | 12 | ||
13 | @popd | 13 | @popd |
14 | @endlocal | 14 | @endlocal |