Skip to content

Commit

Permalink
Fixed ci/appveyor/prepare_github_deploy.ps1 for properly detecting "p…
Browse files Browse the repository at this point in the history
…rerelease" branches.
  • Loading branch information
end2endzone committed Jan 20, 2018
1 parent e5a9ce9 commit 22a2490
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ci/appveyor/prepare_github_deploy.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
Write-Output "Running prepare_github_deploy.ps1..."
Write-Output "Current branch: $env:APPVEYOR_REPO_BRANCH"
Write-Output "Current build version: $env:APPVEYOR_BUILD_VERSION"
If ("$env:APPVEYOR_REPO_BRANCH" -contains "prerelease") {
If ("$env:APPVEYOR_REPO_BRANCH".contains("prerelease")) {
Write-Output "Tagging each commits with a unique version..."
Write-Output "Deploying each commits to GitHub..."

Expand Down

0 comments on commit 22a2490

Please sign in to comment.