From 5e64206f90fd2147d8604d7778a31318e9b954bc Mon Sep 17 00:00:00 2001 From: Damien Guard Date: Wed, 10 Jan 2018 15:45:57 -0800 Subject: [PATCH] Appveyor double-ampersand nonsense --- appveyor.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f1972560b..6526f0830 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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 )