From f11057c70ce3c16436a275559d9e5cc54e5e99c9 Mon Sep 17 00:00:00 2001 From: Thomas Reynolds Date: Fri, 13 Feb 2015 14:42:17 -0800 Subject: [PATCH] change deploy call --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 70c8ab320..d1fe239e3 100644 --- a/Rakefile +++ b/Rakefile @@ -22,7 +22,7 @@ desc 'Pushes repository to GitHub' task :push do puts 'Pushing to github...' sh "git tag v#{Middleman::VERSION}" - sh 'git push origin master' + sh 'git push' sh "git push origin v#{Middleman::VERSION}" end