Skip to content

Commit c2d5e0c

Browse files
author
Gary Ewan Park
committed
(GH-32) Corrected logic for Scheduled Task
- Must have been getting tired last night, as logic was the exact reverse :-)
1 parent 3e69885 commit c2d5e0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

BuildScripts/build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if($Help){
2424
}
2525

2626
if(Test-Path -Path env:\APPVEYOR) {
27-
if ($env:APPVEYOR_SCHEDULED_BUILD -ne "True") {
27+
if ($env:APPVEYOR_SCHEDULED_BUILD -eq "True") {
2828
Write-Output "Since this is a scheduled build, simply run a build, with deployment of Coverity Artifacts, but no other deployment"
2929
invoke-psake "$here/default.ps1" -task RebuildSolution -properties @{ 'config'='Release'; }
3030
} elseif($env:APPVEYOR_REPO_BRANCH -eq "develop" -And $env:APPVEYOR_PULL_REQUEST_NUMBER -eq $null) {

0 commit comments

Comments
 (0)