mirror of
https://github.com/finos/SymphonyElectron.git
synced 2025-02-25 18:55:29 -06:00
Merge pull request #1189 from mattias-symphony/signing
fix: Added error check to detect signing failure
This commit is contained in:
commit
e9bb5757b3
@ -158,6 +158,10 @@ if NOT EXIST %SIGNING_FILE_PATH% (
|
||||
exit /b -1
|
||||
)
|
||||
call %SIGNING_FILE_PATH%
|
||||
IF %errorlevel% neq 0 (
|
||||
echo "Failed to sign installer"
|
||||
exit /b -1
|
||||
)
|
||||
|
||||
echo "Copying New MSI installer to target dir"
|
||||
copy "WixSharpInstaller\Symphony.msi" "%targetsDir%\%archiveName%.msi"
|
||||
|
Loading…
Reference in New Issue
Block a user