Reliability of Windows Installer process on appveyor.yml

This commit is contained in:
Damien Guard 2017-08-08 10:37:55 -07:00
parent c850f38fee
commit 4c4e5fa3a1
No known key found for this signature in database
GPG Key ID: DC14FA2FB1465DB6
2 changed files with 7 additions and 5 deletions

View File

@ -41,11 +41,7 @@ test_script:
- script\test.cmd
after_test:
- IF [%APPVEYOR_REPO_BRANCH:~-9%]==[-releases] (
IF NOT EXIST C:\sqtemp MKDIR C:\sqtemp
SET SQUIRREL_TEMP=C:\sqtemp
script\build.cmd --existing-binaries --code-sign --create-windows-installer
)
- IF [%APPVEYOR_REPO_BRANCH:~-9%]==[-releases] ( script\create-installer.cmd )
deploy: off
artifacts:

View File

@ -0,0 +1,6 @@
@ECHO OFF
IF NOT EXIST C:\sqtemp MKDIR C:\sqtemp
SET SQUIRREL_TEMP=C:\sqtemp
del script\package-lock.json /q
del apm\package-lock.json /q
script\build.cmd --existing-binaries --code-sign --create-windows-installer