From c5a4de28532eaaf8abf2496ca1d4cdc02e5f450a Mon Sep 17 00:00:00 2001 From: Jesse Wolfe Date: Wed, 17 Feb 2010 15:36:26 -0800 Subject: Fixing #3185 Rakefile is loading puppet.rb twice A 'require' statement with a path confused ruby enough to cause the same file to get interpreted twice. Signed-off-by: Jesse Wolfe --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 193ba77d3..7b6983a04 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' -- cgit