From e9923f2eda9cedf9b801ce2d31dc9876a083fdd9 Mon Sep 17 00:00:00 2001 From: Dan Bode Date: Fri, 15 Jun 2012 23:28:28 -0700 Subject: [PATCH] Remove Puppet reference from rake task. The Puppet namespace reference was causing failures for the case where spec_helper was not installed b/c the puppet library is not explicitly required in the Rakefile. --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 3c72e39..993da1d 100644 --- a/Rakefile +++ b/Rakefile @@ -28,7 +28,7 @@ namespace :modules do # I should check to see if the file is there? outpath = File.join(modulepath, local) output = `git clone #{remote} #{outpath}` - Puppet.debug(output) + puts output end branches_to_checkout.each do |local, branch| Dir.chdir(File.join(modulepath, local)) do