Switch to deployment from MSVC2017

[ci skip]
This commit is contained in:
Michał Janiszewski 2017-07-24 12:33:34 +02:00
parent 1e3b6a2ea5
commit 8770b70ec0
1 changed files with 3 additions and 3 deletions

View File

@ -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})