From 1288b229d198e03da483cceb8de151eb4921dc41 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Sat, 13 Feb 2010 11:48:13 -0800 Subject: [PATCH] Require action base before everything else as well --- lib/vagrant.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant.rb b/lib/vagrant.rb index e8e471641..2b655b6e1 100644 --- a/lib/vagrant.rb +++ b/lib/vagrant.rb @@ -4,7 +4,7 @@ PROJECT_ROOT = File.join(libdir, '..') # The libs which must be loaded prior to the rest %w{ftools json pathname logger virtualbox net/ssh - net/scp tarruby fileutils vagrant/util}.each do |f| + net/scp tarruby fileutils vagrant/util vagrant/actions/base}.each do |f| require f end