From 5598a260c23df0c5b3d2c5ff83304efc3daa155d Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 13 Mar 2010 03:12:08 -0800 Subject: [PATCH] Require the files, not puts them... its late. --- lib/vagrant.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index 7205bf527..8b67c32c8 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -11,10 +11,10 @@ end # The vagrant specific files which must be loaded prior to the rest %w{vagrant/util vagrant/actions/base vagrant/downloaders/base vagrant/actions/runner vagrant/config vagrant/provisioners/base vagrant/provisioners/chef}.each do |f| - puts File.expand_path(f, libdir) + require File.expand_path(f, libdir) end # Glob require the rest Dir[File.join(libdir, "vagrant", "**", "*.rb")].each do |f| - puts File.expand_path(f) + require File.expand_path(f) end