summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tools/build_scripts/z6_CompileInstallers.bat15
1 files changed, 13 insertions, 2 deletions
diff --git a/tools/build_scripts/z6_CompileInstallers.bat b/tools/build_scripts/z6_CompileInstallers.bat
index 11263bf824..a8869aa992 100644
--- a/tools/build_scripts/z6_CompileInstallers.bat
+++ b/tools/build_scripts/z6_CompileInstallers.bat
@@ -8,8 +8,19 @@ copy /V /Y ..\..\build\build.no tmp\build.no
pushd tmp
for /F "tokens=1,2,3 delims= " %%i in (build.no) do set MirVer=%%i.%%j.%%k
popd
-%ISCC% /Dptx86 /DAppVer=%MirVer% /O"Output" "InnoNG_32\MirandaNG.iss"
-%ISCC% /DAppVer=%MirVer% /O"Output" "InnoNG_64\MirandaNG.iss"
+
+%ISCC% /Dptx86 /DAppVer=%MirVer% /O"Output" "InnoNG_32\MirandaNG.iss" >iscc.log 2>&1
+if errorlevel 1 (
+ start "" iscc.log
+ exit 1
+)
+
+%ISCC% /DAppVer=%MirVer% /O"Output" "InnoNG_64\MirandaNG.iss" >iscc.log 2>&1
+if errorlevel 1 (
+ start "" iscc.log
+ exit 1
+)
+
call cleanup.bat
copy /V /Y Output\miranda-ng-alpha-latest*.exe "%ArchDistr%\"
rd /S /Q Output