comparison deploy/win64/build-and-package.bat @ 2451:22af3b429679

Exit on error
author Chris Cannam
date Wed, 15 Jan 2020 11:03:31 +0000
parents 119588c42772
children be6a245c43f3
comparison
equal deleted inserted replaced
2450:c8fe74afb77d 2451:22af3b429679
11 @ echo Could not find WiX Toolset 11 @ echo Could not find WiX Toolset
12 @ exit /b 2 12 @ exit /b 2
13 ) 13 )
14 14
15 powershell -NoProfile -ExecutionPolicy Bypass -Command "& 'deploy\win32\generate-wxs.ps1'" 15 powershell -NoProfile -ExecutionPolicy Bypass -Command "& 'deploy\win32\generate-wxs.ps1'"
16 if errorlevel 1 exit /b %errorlevel%
17
16 powershell -NoProfile -ExecutionPolicy Bypass -Command "& 'deploy\win64\generate-wxs.ps1'" 18 powershell -NoProfile -ExecutionPolicy Bypass -Command "& 'deploy\win64\generate-wxs.ps1'"
19 if errorlevel 1 exit /b %errorlevel%
17 20
18 set ORIGINALPATH=%PATH% 21 set ORIGINALPATH=%PATH%
19 set PATH=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin;%PATH% 22 set PATH=C:\Program Files (x86)\Microsoft SDKs\Windows\v7.1A\Bin;%PATH%
20 set NAME=Open Source Developer, Christopher Cannam 23 set NAME=Open Source Developer, Christopher Cannam
21 24