build: improve error handling if windows deployment cannot find the proper tools

This commit is contained in:
mlangkabel
2020-03-30 12:02:55 +02:00
parent d13c21f6f3
commit f37716dc82
2 changed files with 9 additions and 2 deletions
+3 -1
View File
@@ -6,7 +6,7 @@ UPDATE_DATABASES=true
CREATE_WIX_INSTALLER=true
CREATE_PORTABLE_PACKAGE=true
RUN_32_BIT_PIPELINE=true
RUN_32_BIT_PIPELINE=false
RUN_64_BIT_PIPELINE=true
@@ -215,9 +215,11 @@ fi
cd deployment/windows/wixSetup
if [ $RUN_32_BIT_PIPELINE = true ]; then
sh build_win32.sh
[ $? -eq 0 ] || exit 1
fi
if [ $RUN_64_BIT_PIPELINE = true ]; then
sh build_win64.sh
[ $? -eq 0 ] || exit 1
fi
cd ../../..