Skip to content

Commit

Permalink
appveyor: fix logic in Get-SaveCache
Browse files Browse the repository at this point in the history
  • Loading branch information
piscisaureus committed Oct 25, 2018
1 parent 2cfa608 commit 243a3ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ environment:
# Get-SaveCache returns $true if the cache will be saved at the end.
function Get-SaveCache {
-not $env:APPVEYOR_PULL_REQUEST_NUMBER -and
-not $env:APPVEYOR_CACHE_SKIP_SAVE -eq "true"
-not ($env:APPVEYOR_CACHE_SKIP_SAVE -eq "true")
}
for:
Expand Down

0 comments on commit 243a3ba

Please sign in to comment.