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 2014/07/31 07:12:28 UTC

[14/50] git commit: Remove accidentally committed disabling of step

Remove accidentally committed disabling of step

git-svn-id: https://svn.apache.org/repos/asf/buildr/trunk@1535926 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/buildr/repo
Commit: http://git-wip-us.apache.org/repos/asf/buildr/commit/735ad9d6
Tree: http://git-wip-us.apache.org/repos/asf/buildr/tree/735ad9d6
Diff: http://git-wip-us.apache.org/repos/asf/buildr/diff/735ad9d6

Branch: refs/heads/master
Commit: 735ad9d6f432d84495f45685307e70e2ae5d9e1c
Parents: a90fca0
Author: Peter Donald <do...@apache.org>
Authored: Sat Oct 26 06:11:27 2013 +0000
Committer: Peter Donald <do...@apache.org>
Committed: Sat Oct 26 06:11:27 2013 +0000

----------------------------------------------------------------------
 rakelib/stage.rake | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/buildr/blob/735ad9d6/rakelib/stage.rake
----------------------------------------------------------------------
diff --git a/rakelib/stage.rake b/rakelib/stage.rake
index c8c5be3..25ca670 100644
--- a/rakelib/stage.rake
+++ b/rakelib/stage.rake
@@ -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