Fix blank commit information for AppVeyor

This commit is contained in:
Ted John 2016-10-02 20:17:09 +01:00
parent 08eb1db6d3
commit a77c37f680
2 changed files with 4 additions and 3 deletions

View File

@ -12,9 +12,6 @@ environment:
OPENRCT2_ORG_TOKEN:
secure: leQX3xCQpmBLGuMqrxjFlzexDt96ypNRMM5TTRVHbGE8PwVg9crgeykLc2BIZU6HDHveJCHqh2cGMdHtHYJYcw==
BUILD_SERVER: AppVeyor
GIT_TAG: $(APPVEYOR_REPO_TAG_NAME)
GIT_BRANCH: $(APPVEYOR_REPO_BRANCH)
GIT_COMMIT_SHA1: $(APPVEYOR_REPO_COMMIT)
PATH: $(PATH);C:\Program Files (x86)\Windows Kits\10\bin\x86
install:
- ps: >-

View File

@ -49,3 +49,7 @@ else
# Don't build the NSIS installer for non-uploaded builds
${env:NO_NSIS} = "true"
}
$env:GIT_TAG = $env:APPVEYOR_REPO_TAG_NAME
$env:GIT_BRANCH = $env:APPVEYOR_REPO_BRANCH
$env:GIT_COMMIT_SHA1 = $env:APPVEYOR_REPO_COMMIT