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/02/26 09:04:32 UTC

svn commit: r631122 - /incubator/buildr/trunk/Rakefile

Author: assaf
Date: Tue Feb 26 00:04:31 2008
New Revision: 631122

URL: http://svn.apache.org/viewvc?rev=631122&view=rev
Log:
Fix to allow rake install even when RubyForge refuses to cooperate with us

Modified:
    incubator/buildr/trunk/Rakefile

Modified: incubator/buildr/trunk/Rakefile
URL: http://svn.apache.org/viewvc/incubator/buildr/trunk/Rakefile?rev=631122&r1=631121&r2=631122&view=diff
==============================================================================
--- incubator/buildr/trunk/Rakefile (original)
+++ incubator/buildr/trunk/Rakefile Tue Feb 26 00:04:31 2008
@@ -69,7 +69,7 @@
     cmd = %w(gem install)
     pkg = ruby_package
   end
-  cmd << File.expand_path(pkg.gem_file, pkg.package_dir)
+  cmd << '--ignore-dependencies' << File.expand_path(pkg.gem_file, pkg.package_dir)
   system *cmd
 end