You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildr.apache.org by as...@apache.org on 2008/04/26 02:47:45 UTC

svn commit: r651752 - /incubator/buildr/trunk/rakelib/apache.rake

Author: assaf
Date: Fri Apr 25 17:47:44 2008
New Revision: 651752

URL: http://svn.apache.org/viewvc?rev=651752&view=rev
Log:
Moving GPG signature to the very last step of staging

Modified:
    incubator/buildr/trunk/rakelib/apache.rake

Modified: incubator/buildr/trunk/rakelib/apache.rake
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/rakelib/apache.rake?rev=651752&r1=651751&r2=651752&view=diff
==============================================================================
--- incubator/buildr/trunk/rakelib/apache.rake (original)
+++ incubator/buildr/trunk/rakelib/apache.rake Fri Apr 25 17:47:44 2008
@@ -90,5 +90,10 @@
 
 
 task 'stage:check'=>['apache:license', 'apache:check']
-task 'stage:prepare'=>['staged/distro', 'apache:sign', 'staged/site']
+task 'stage:prepare'=>['staged/distro', 'staged/site'] do |task|
+  # Since this requires input (passphrase), do it at the very end.
+  task.enhance do
+    task('apache:sign').invoke
+  end
+end
 task 'release:publish'=>['apache:publish:distro', 'apache:publish:site']