diff options
author | George Hazan <ghazan@miranda.im> | 2019-08-21 17:21:57 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2019-08-21 17:21:57 +0300 |
commit | e68bd4d1b2d30c1f1043ce6caf3a5722df34270c (patch) | |
tree | 38bd23fc786acd8622bc585af3498e60e7f47c5c /tools/build_scripts | |
parent | 0c11bfb70269e73dac3c95c2a7b41ab88db20df7 (diff) |
one more fix
Diffstat (limited to 'tools/build_scripts')
-rw-r--r-- | tools/build_scripts/z6_CompileInstallers.bat | 15 |
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 |