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/02 01:39:54 UTC

svn commit: r1528270 - in /buildr/trunk: CHANGELOG lib/buildr/core/build.rb

Author: donaldp
Date: Tue Oct  1 23:39:53 2013
New Revision: 1528270

URL: http://svn.apache.org/r1528270
Log:
BUILDR-394 - Fix release task with standalone distribution.
          
Submitted By Tammo van Lessen.

Modified:
    buildr/trunk/CHANGELOG
    buildr/trunk/lib/buildr/core/build.rb

Modified: buildr/trunk/CHANGELOG
URL: http://svn.apache.org/viewvc/buildr/trunk/CHANGELOG?rev=1528270&r1=1528269&r2=1528270&view=diff
==============================================================================
--- buildr/trunk/CHANGELOG (original)
+++ buildr/trunk/CHANGELOG Tue Oct  1 23:39:53 2013
@@ -1,4 +1,6 @@
 1.4.13 (2013-10-02)
+* Fixed:  BUILDR-394 - Fix release task with standalone distribution.
+          Submitted By Tammo van Lessen.
 * Added:  BUILDR-678 - Improve support for gpg signing artifacts
           using a single method.
 * Fixed:  BUILDR-677 - GPG addon hangs when .asc files are still in

Modified: buildr/trunk/lib/buildr/core/build.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/build.rb?rev=1528270&r1=1528269&r2=1528270&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/build.rb (original)
+++ buildr/trunk/lib/buildr/core/build.rb Tue Oct  1 23:39:53 2013
@@ -331,10 +331,10 @@ module Buildr #:nodoc:
       @this_version = extract_version
       check
       with_release_candidate_version do |release_candidate_buildfile|
-        args = '-S', 'buildr', "_#{Buildr::VERSION}_", '--buildfile', release_candidate_buildfile
+        args = 'buildr', "_#{Buildr::VERSION}_", '--buildfile', release_candidate_buildfile
         args << '--environment' << Buildr.environment unless Buildr.environment.to_s.empty?
         args << 'clean' << 'upload' << 'DEBUG=no'
-        ruby *args
+        sh *args
       end
       tag_release resolve_tag
       update_version_to_next if this_version != resolve_next_version(this_version)