Skip to content

Commit

Permalink
fix yml error
Browse files Browse the repository at this point in the history
  • Loading branch information
fszlin committed Apr 3, 2017
1 parent 34f4461 commit 1dd0ef3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ init:
- git config --global core.autocrlf input
- ps: $verParts = $($env:appveyor_build_version) -Split '\.'
- ps: $env:CERTES_ASSEMBLY_VERSION = $verParts[0] + '.' + $verParts[1] + '.' + $verParts[2]
- ps: $env:CERTES_ASSEMBLY_FILE_VERSION = $env:CERTES_ASSEMBLY_VERSION + '.' + {build}
- ps: $env:CERTES_PACKAGE_VERSION = if ($env:APPVEYOR_REPO_BRANCH -eq "master") { $env:CERTES_ASSEMBLY_VERSION + '.' + {build} } else { $env:CERTES_ASSEMBLY_VERSION + '.' + {build} + '-' + $env:APPVEYOR_REPO_BRANCH }
- ps: $env:CERTES_ASSEMBLY_FILE_VERSION = $env:CERTES_ASSEMBLY_VERSION + '.' + $verParts[3]
- ps: $env:CERTES_PACKAGE_VERSION = if ($env:APPVEYOR_REPO_BRANCH -eq "master") { $env:CERTES_ASSEMBLY_FILE_VERSION } else { $env:CERTES_ASSEMBLY_FILE_VERSION + '-' + $env:APPVEYOR_REPO_BRANCH }

install:

Expand Down

0 comments on commit 1dd0ef3

Please sign in to comment.