Skip to content

Commit

Permalink
Merge pull request #88 from Azure/dev
Browse files Browse the repository at this point in the history
Fix build script to not use tag name for creating nuget package
  • Loading branch information
pragnagopa committed Jun 5, 2018
2 parents c4fa91f + 0d5d754 commit d13c951
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Expand Up @@ -15,8 +15,8 @@ build_script:
- ps: |
$buildNumber = 0
if($env:APPVEYOR_REPO_TAG -eq "true") {
$buildNumber = $env:APPVEYOR_REPO_TAG_NAME
Write-Host “Found git tag. Setting package suffix to '$buildNumber'"
$buildNumber = ""
Write-Host “Found git tag. Not setting package suffix"
}
else {
$buildNumber = "-$env:APPVEYOR_BUILD_NUMBER"
Expand Down

0 comments on commit d13c951

Please sign in to comment.