summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Wolfe <jes5199@gmail.com>2010-02-17 15:36:26 -0800
committerJesse Wolfe <jes5199@gmail.com>2010-02-17 15:39:15 -0800
commitd532e6d6c64f438de9596b07f1f4f0cb81071446 (patch)
tree6614edbff85d5980038a8cc518c618a4868187b9
parent5aa596c99cac2e578860dc236ec99b908840518d (diff)
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 <jes5199@gmail.com>
-rw-r--r--Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index 791d744e0..6f2ff592a 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'