Appveyor double-ampersand nonsense

This commit is contained in:
Damien Guard 2018-01-10 15:45:57 -08:00
parent 4422318584
commit 5e64206f90
No known key found for this signature in database
GPG Key ID: DC14FA2FB1465DB6

View File

@ -43,19 +43,19 @@ build_script:
- SET SQUIRREL_TEMP=C:\tmp
- IF [%TASK%]==[installer] (
IF [%APPVEYOR_REPO_BRANCH:~-9%]==[-releases] (
ECHO Building on release branch - Creating production artifacts
ECHO Building on release branch - Creating production artifacts &&
script\build.cmd --code-sign --compress-artifacts --create-windows-installer
) ELSE (
IF [%APPVEYOR_REPO_BRANCH%]==[master] (
ECHO Building on master branch - Creating signed zips
ECHO Building on master branch - Creating signed zips &&
script\build.cmd --code-sign --compress-artifacts
) ELSE (
ECHO Building on non-master branch - Creating unsigned zips
ECHO Building on non-master branch - Creating unsigned zips &&
script\build.cmd --compress-artifacts
)
)
) ELSE (
ECHO Test build only - Not creating artifacts
ECHO Test build only - Not creating artifacts &&
script\build.cmd
)