Skip to content

Commit

Permalink
Fixed typo in appveyor.yml that broke deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
abe545 committed Feb 15, 2016
1 parent 65fafa0 commit 2a86e44
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 @@ -11,7 +11,7 @@ branches:

init:
- ps: $env:releaseVersion = "2.2.5"
- ps: $env:packageVersion = if (Test-Path env:\APPVEYOR_REPO_TAG_NAME) { "$env.APPVEYOR_REPO_TAG_NAME" } else { "{0}-aInternalBuild{1:000}" -f $env:releaseVersion, [System.Int32]::Parse($env:APPVEYOR_BUILD_NUMBER) }
- ps: $env:packageVersion = if (Test-Path env:\APPVEYOR_REPO_TAG_NAME) { "$env:APPVEYOR_REPO_TAG_NAME" } else { "{0}-aInternalBuild{1:000}" -f $env:releaseVersion, [System.Int32]::Parse($env:APPVEYOR_BUILD_NUMBER) }

assembly_info:
patch: true
Expand Down

0 comments on commit 2a86e44

Please sign in to comment.