Fix Rakefile release task (tag pushing was missing origin)

This commit is contained in:
Tom Preston-Werner 2010-06-23 15:58:09 -07:00
parent 44015665b9
commit ce5a2a04e3
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
== Edge
* Bug Fixes
* Fix Rakefile 'release' task (tag pushing was missing origin)
== 0.6.1 == 0.6.1
* Bug Fixes * Bug Fixes
* Fix Markdown Pygments prefix and suffix (#178) * Fix Markdown Pygments prefix and suffix (#178)

View File

@ -120,7 +120,7 @@ task :release => :build do
sh "git commit --allow-empty -a -m 'Release #{version}'" sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}" sh "git tag v#{version}"
sh "git push origin master" sh "git push origin master"
sh "git push v#{version}" sh "git push origin v#{version}"
sh "gem push pkg/#{name}-#{version}.gem" sh "gem push pkg/#{name}-#{version}.gem"
end end