Skip to content

Commit

Permalink
Fix Rakefile release task (tag pushing was missing origin)
Browse files Browse the repository at this point in the history
  • Loading branch information
mojombo committed Jun 23, 2010
1 parent 4401566 commit ce5a2a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions History.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
== Edge
* Bug Fixes
* Fix Rakefile 'release' task (tag pushing was missing origin)

== 0.6.1
* Bug Fixes
* Fix Markdown Pygments prefix and suffix (#178)
Expand Down
2 changes: 1 addition & 1 deletion Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ task :release => :build do
sh "git commit --allow-empty -a -m 'Release #{version}'"
sh "git tag v#{version}"
sh "git push origin master"
sh "git push v#{version}"
sh "git push origin v#{version}"
sh "gem push pkg/#{name}-#{version}.gem"
end

Expand Down

0 comments on commit ce5a2a0

Please sign in to comment.