From ffb608ec7e1e58afd2a4cbaf3f4df5e54f8012e2 Mon Sep 17 00:00:00 2001 From: quix Date: Mon, 7 Jun 2010 11:45:58 -0400 Subject: [PATCH] update release scripts for this branch --- Rakefile.drake | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Rakefile.drake b/Rakefile.drake index 9c83c4be9..0404e4656 100644 --- a/Rakefile.drake +++ b/Rakefile.drake @@ -13,9 +13,9 @@ task :drake_prerelease => [:clobber, :gemspec] do unless `git status` =~ %r!nothing to commit \(working directory clean\)! raise "Directory not clean" end - unless `git pull` =~ %r!Already up-to-date! - raise "New stuff from remote repository" - end + #unless `git pull` =~ %r!Already up-to-date! + # raise "New stuff from remote repository" + #end %w[github.com rubyforge.org].each { |server| cmd = "ping " + ( if Config::CONFIG["host"] =~ %r!darwin! @@ -59,7 +59,7 @@ task :drake_finish_release do } git("tag", "drake-" + SPEC.version.to_s) - git(*%w(push --tags origin master)) + git(*%w(push --tags origin)) end task :drake_release =>