A 'require' statement with a path confused ruby enough to cause the same file to get interpreted twice.
Signed-off-by: Jesse Wolfe <[email protected]> --- Rakefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/Rakefile b/Rakefile index 791d744..6f2ff59 100644 --- a/Rakefile +++ b/Rakefile @@ -3,7 +3,7 @@ $: << File.expand_path('lib') $LOAD_PATH << File.join(File.dirname(__FILE__), 'tasks') -require './lib/puppet.rb' +require 'puppet.rb' require 'rake' require 'rake/packagetask' require 'rake/gempackagetask' -- 1.6.3.3 -- You received this message because you are subscribed to the Google Groups "Puppet Developers" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/puppet-dev?hl=en.
