Fix AppVeyor env var value conditions

I assumed that the documented values of `true` and `false` were
booleans, not strings.
This commit is contained in:
Oliver Hamlet
2016-07-27 23:34:53 +01:00
parent c92769e5f4
commit 8e13efe4db
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
$innoInstallPath = 'C:\Program Files (x86)\Inno Setup 5'
if ($env:APPVEYOR_REPO_TAG) {
if ($env:APPVEYOR_REPO_TAG -eq 'true') {
if (!(Test-Path $innoInstallPath)) {
choco install -y InnoSetup
+1 -1
View File
@@ -19,7 +19,7 @@ $docsFiles = @(
$commitMessage = 'Add v' + $env:APPVEYOR_REPO_TAG_NAME + ' release docs'
if ($env:APPVEYOR_REPO_TAG) {
if ($env:APPVEYOR_REPO_TAG -eq 'true') {
cd 'C:\projects'
git clone $docsRepoUrl