0
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-03-03 09:31:22 -05:00

appveyor: fix logic in Get-SaveCache

This commit is contained in:
Bert Belder 2018-10-25 22:47:52 +02:00
parent 2cfa608324
commit 243a3ba2d0
No known key found for this signature in database
GPG key ID: 7A77887B2E2ED461

View file

@ -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: