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/11 20:39:30 UTC

svn commit: r1420359 - /buildr/trunk/lib/buildr/core/application.rb

Author: donaldp
Date: Tue Dec 11 19:39:29 2012
New Revision: 1420359

URL: http://svn.apache.org/viewvc?rev=1420359&view=rev
Log:
Load the expanded path when loading an extension task as it seems to be required under jruby 1.7.1

Modified:
    buildr/trunk/lib/buildr/core/application.rb

Modified: buildr/trunk/lib/buildr/core/application.rb
URL: http://svn.apache.org/viewvc/buildr/trunk/lib/buildr/core/application.rb?rev=1420359&r1=1420358&r2=1420359&view=diff
==============================================================================
--- buildr/trunk/lib/buildr/core/application.rb (original)
+++ buildr/trunk/lib/buildr/core/application.rb Tue Dec 11 19:39:29 2012
@@ -493,7 +493,7 @@ module Buildr
 
       files.each do |file|
         unless $LOADED_FEATURES.include?(file)
-          load file
+          load File.expand_path(file)
           $LOADED_FEATURES << file
         end
       end