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 2012/12/04 04:32:27 UTC

svn commit: r1416759 - /buildr/trunk/rakelib/all-in-one.rake

Author: donaldp
Date: Tue Dec  4 03:32:27 2012
New Revision: 1416759

URL: http://svn.apache.org/viewvc?rev=1416759&view=rev
Log:
Attempt to use the system call to invoke the gem install

Modified:
    buildr/trunk/rakelib/all-in-one.rake

Modified: buildr/trunk/rakelib/all-in-one.rake
URL: http://svn.apache.org/viewvc/buildr/trunk/rakelib/all-in-one.rake?rev=1416759&r1=1416758&r2=1416759&view=diff
==============================================================================
--- buildr/trunk/rakelib/all-in-one.rake (original)
+++ buildr/trunk/rakelib/all-in-one.rake Tue Dec  4 03:32:27 2012
@@ -74,7 +74,7 @@ namespace 'all-in-one' do
     puts 'Install Buildr gem ...'
     java_gem = FileList["../../pkg/buildr-#{spec.version}-java.gem"].first
     command = ['bin/jruby', '-S', 'gem', 'install', java_gem, '--no-rdoc', '--no-ri', '--env-shebang']
-    sh({'GEM_HOME' => nil, 'GEM_PATH' => nil, 'MY_RUBY_HOME' => nil, 'RUBYOPT' => nil}, *command)
+    system({'GEM_HOME' => nil, 'GEM_PATH' => nil, 'MY_RUBY_HOME' => nil, 'RUBYOPT' => nil}, *command)
     puts '[X] Install Buildr gem'
   end