mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-12-31 19:27:00 -06:00
Added error check to detect signing failure
This commit is contained in:
parent
99e09a4255
commit
befba67e17
@ -158,6 +158,10 @@ if NOT EXIST %SIGNING_FILE_PATH% (
|
|||||||
exit /b -1
|
exit /b -1
|
||||||
)
|
)
|
||||||
call %SIGNING_FILE_PATH%
|
call %SIGNING_FILE_PATH%
|
||||||
|
IF %errorlevel% neq 0 (
|
||||||
|
echo "Failed to sign installer"
|
||||||
|
exit /b -1
|
||||||
|
)
|
||||||
|
|
||||||
echo "Copying New MSI installer to target dir"
|
echo "Copying New MSI installer to target dir"
|
||||||
copy "WixSharpInstaller\Symphony.msi" "%targetsDir%\%archiveName%.msi"
|
copy "WixSharpInstaller\Symphony.msi" "%targetsDir%\%archiveName%.msi"
|
||||||
|
Loading…
Reference in New Issue
Block a user