We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a34acfc commit cbaabefCopy full SHA for cbaabef
update-dependencies.ps1
@@ -1,10 +1,10 @@
1
# Copyright (c) 2018 The nanoFramework project contributors
2
# See LICENSE file in the project root for full license information.
3
4
-# only need to update dependencies when build is NOT for a pull-request
5
-if ($env:appveyor_pull_request_number)
+# skip updating dependencies if build is a pull-request or not a tag
+if ($env:appveyor_pull_request_number -or $env:APPVEYOR_REPO_TAG -eq 'false')
6
{
7
- 'Skip updating dependencies as this is a PR build...' | Write-Host -ForegroundColor White
+ 'Skip updating dependencies...' | Write-Host -ForegroundColor White
8
}
9
else
10
0 commit comments