Skip to content

Commit 4a3f9f1

Browse files
authored
Merge pull request #1203 from asarium/ci/fixNightlyBuilds
Fix wrong variable usage in test script
2 parents a644682 + c589c72 commit 4a3f9f1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ci/appveyor/test.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
if ([System.Convert]::ToBoolean($env:DeployBuild)) {
2+
if ([System.Convert]::ToBoolean($env:ReleaseBuild) -Or [System.Convert]::ToBoolean($env:NightlyBuild)) {
33
# Skip tests for deployment
44
exit 0
55
} else {

0 commit comments

Comments
 (0)