8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 00:43:02 +01:00

Do not let BuildExecutableInstall fail silently if an error has occurred.

This commit is contained in:
Paul Reeves 2021-02-01 16:14:26 +01:00
parent 3bafdce841
commit 03395fafb1

View File

@ -51,7 +51,7 @@ if "%FBBUILD_BUILD_ONLY%"=="1" goto :END
:: Package everything up :: Package everything up
pushd ..\install\arch-specific\win32 pushd ..\install\arch-specific\win32
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE% call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE%
if "%ERRLEV%"=="1" (popd & goto :END) if "%ERRLEV%"=="1" ( @echo Oops - some sort of error & popd & goto :END)
if defined FBBUILD_INCLUDE_PDB ( if defined FBBUILD_INCLUDE_PDB (
set /A FBBUILD_PACKAGE_NUMBER-=1 set /A FBBUILD_PACKAGE_NUMBER-=1
call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE% PDB call BuildExecutableInstall ISX ZIP EMB %FBBUILD_BUILDTYPE% PDB