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 1dabad9 commit f2120d1Copy full SHA for f2120d1
commit-assemblyinfo-changes.ps1
@@ -1,7 +1,10 @@
1
-# only need to commit assembly info changes when build is NOT for a pull-request
2
-if ($env:appveyor_pull_request_number)
+# Copyright (c) 2018 The nanoFramework project contributors
+# See LICENSE file in the project root for full license information.
3
+
4
+# skip updating assembly info changes if build is a pull-request or not a tag
5
+if ($env:appveyor_pull_request_number -or $env:APPVEYOR_REPO_TAG -eq 'false')
6
{
- 'Skip committing assembly info changes as this is a PR build...' | Write-Host -ForegroundColor White
7
+ 'Skip committing assembly info changes...' | Write-Host -ForegroundColor White
8
}
9
else
10
0 commit comments