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 9be96a9 commit 72e70edCopy full SHA for 72e70ed
lib/easy-deployment/version.rb
@@ -1,5 +1,5 @@
1
module Easy
2
module Deployment
3
- VERSION = "0.3.1"
+ VERSION = "0.3.2"
4
end
5
lib/easy/deployment/capistrano.rb
@@ -65,7 +65,7 @@ def current_git_branch
65
66
desc "Tag the release by creating or moving a remote branch named after the current environment"
67
task :tag_release do
68
- unless system("git branch -r | grep 'origin/releases/#{stage}'")
+ if system("git branch -r | grep 'origin/releases/#{stage}'")
69
system "git push origin :releases/#{stage}"
70
71
system "git push origin #{branch}:releases/#{stage}"
0 commit comments