You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by to...@apache.org on 2011/11/18 05:21:21 UTC

svn commit: r1203484 - /buildr/trunk/rakelib/stage.rake

Author: toulmean
Date: Fri Nov 18 04:21:21 2011
New Revision: 1203484

URL: http://svn.apache.org/viewvc?rev=1203484&view=rev
Log:
put back the SVN check when staging for releases

Modified:
    buildr/trunk/rakelib/stage.rake

Modified: buildr/trunk/rakelib/stage.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/stage.rake?rev=1203484&r1=1203483&r2=1203484&view=diff
==============================================================================
--- buildr/trunk/rakelib/stage.rake (original)
+++ buildr/trunk/rakelib/stage.rake Fri Nov 18 04:21:21 2011
@@ -26,7 +26,7 @@ task :prepare do |task, args|
   lambda do
     puts "Checking there are no local changes ... "
     svn = `svn status`
-    #fail "Cannot release unless all local changes are in SVN:\n#{svn}" unless svn.empty?
+    fail "Cannot release unless all local changes are in SVN:\n#{svn}" unless svn.empty?
     git = `git status -s`
     fail "Cannot release unless all local changes are in Git:\n#{git}" if git[/^ M/] && ENV["IGNORE_GIT"].nil?
     puts "[X] There are no local changes, everything is in source control"