From 8770b70ec0d2ebd6b760184d5e68f2961f219f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Mon, 24 Jul 2017 12:33:34 +0200 Subject: [PATCH] Switch to deployment from MSVC2017 [ci skip] --- scripts/ps/appveyor_deploy.ps1 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/ps/appveyor_deploy.ps1 b/scripts/ps/appveyor_deploy.ps1 index 4bd3cc8ad6..2e5f47ca51 100644 --- a/scripts/ps/appveyor_deploy.ps1 +++ b/scripts/ps/appveyor_deploy.ps1 @@ -3,9 +3,9 @@ ########################################### $nottesting = (${env:Configuration} -notlike "*tests") -# Only deploy from VS2015 for now. -$notvs2017 = (${env:APPVEYOR_JOB_NAME} -notlike "*2017*") -if ($nottesting -and $notvs2017) +# Only deploy from VS2017 for now. +$notvs2015 = (${env:APPVEYOR_JOB_NAME} -notlike "*2015*") +if ($nottesting -and $notvs2015) { # Check if OpenRCT2.org API security token is available if (${env:OPENRCT2_ORG_TOKEN})