You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by do...@apache.org on 2013/10/26 08:11:28 UTC

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

Author: donaldp
Date: Sat Oct 26 06:11:27 2013
New Revision: 1535926

URL: http://svn.apache.org/r1535926
Log:
Remove accidentally committed disabling of step

Modified:
    buildr/trunk/rakelib/stage.rake

Modified: buildr/trunk/rakelib/stage.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/stage.rake?rev=1535926&r1=1535925&r2=1535926&view=diff
==============================================================================
--- buildr/trunk/rakelib/stage.rake (original)
+++ buildr/trunk/rakelib/stage.rake Sat Oct 26 06:11:27 2013
@@ -47,7 +47,7 @@ task 'prepare' do |task, args|
     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'
-  end.call if false
+  end.call
 
   # Make sure we have a valid CHANGELOG entry for this release.
   lambda do