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.
This commit is contained in:
Dan Bode
2012-06-15 23:28:28 -07:00
parent 5dee52bb26
commit e9923f2eda

View File

@@ -28,7 +28,7 @@ namespace :modules do
# I should check to see if the file is there? # I should check to see if the file is there?
outpath = File.join(modulepath, local) outpath = File.join(modulepath, local)
output = `git clone #{remote} #{outpath}` output = `git clone #{remote} #{outpath}`
Puppet.debug(output) puts output
end end
branches_to_checkout.each do |local, branch| branches_to_checkout.each do |local, branch|
Dir.chdir(File.join(modulepath, local)) do Dir.chdir(File.join(modulepath, local)) do