diff options
author | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-11-18 17:12:55 +0100 |
---|---|---|
committer | Duarte Meneses <duarte.meneses@sonarsource.com> | 2015-11-18 17:12:55 +0100 |
commit | 8ea7b9f849ec78705cd5a1c7fe077e6b2824d336 (patch) | |
tree | e262217ba1342bb72971b37be044a03a5ceb520f /appveyor.ps1 | |
parent | 214c6e9df401d81430b908fcb570cccbb5c5659d (diff) | |
download | sonar-scanner-cli-8ea7b9f849ec78705cd5a1c7fe077e6b2824d336.tar.gz sonar-scanner-cli-8ea7b9f849ec78705cd5a1c7fe077e6b2824d336.zip |
SQSCANNER-8 Execute ITs on Windows using AppVeyor
Diffstat (limited to 'appveyor.ps1')
-rw-r--r-- | appveyor.ps1 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/appveyor.ps1 b/appveyor.ps1 index 9451406..4b1dd17 100644 --- a/appveyor.ps1 +++ b/appveyor.ps1 @@ -115,7 +115,7 @@ CALLSTACK:$(Get-PSCallStack | Out-String) } } -switch ($env:TEST) +switch ($env:RUN) { "ci" { @@ -150,6 +150,6 @@ switch ($env:TEST) default { - throw "Unexpected TEST mode: $env:TEST" + throw "Unexpected RUN mode: $env:RUN" } } |