From bd006de77b793cc51ea2bc753f1a97e7b42c6c11 Mon Sep 17 00:00:00 2001 From: Ted John Date: Fri, 26 Aug 2016 18:50:52 +0100 Subject: [PATCH] Fix appveyor deployment script --- scripts/ps/appveyor_deploy.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ps/appveyor_deploy.ps1 b/scripts/ps/appveyor_deploy.ps1 index 059525bec0..bf63ce8592 100644 --- a/scripts/ps/appveyor_deploy.ps1 +++ b/scripts/ps/appveyor_deploy.ps1 @@ -6,7 +6,7 @@ if (${env:OPENRCT2_ORG_TOKEN}) { # Only upload tagged builds, develop branch or push/ branches - if (${env:APPVEYOR_REPO_TAG} -or ${env:APPVEYOR_REPO_BRANCH} -match "^develop$|^push/") + if (${env:APPVEYOR_REPO_TAG} -eq "true" -or ${env:APPVEYOR_REPO_BRANCH} -match "^develop$|^push/") { msbuild openrct2.proj /t:UploadArtifacts /logger:"C:\Program Files\AppVeyor\BuildAgent\Appveyor.MSBuildLogger.dll" }