From ce5a2a04e3b2df6086f0954cb9c9f9046a0d5eee Mon Sep 17 00:00:00 2001 From: Tom Preston-Werner Date: Wed, 23 Jun 2010 15:58:09 -0700 Subject: [PATCH] Fix Rakefile release task (tag pushing was missing origin) --- History.txt | 4 ++++ Rakefile | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/History.txt b/History.txt index 2a0881e1..cb9f237c 100644 --- a/History.txt +++ b/History.txt @@ -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) diff --git a/Rakefile b/Rakefile index ce61601e..11551f90 100644 --- a/Rakefile +++ b/Rakefile @@ -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