From b824a4856956a36054b8a85596078a4a1472fe81 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Thu, 9 Sep 2010 00:41:11 -0700 Subject: [PATCH] `vagrant status` shouldn't call "require_environment" --- lib/vagrant/command/status.rb | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/vagrant/command/status.rb b/lib/vagrant/command/status.rb index f71c0eaea..22dfde202 100644 --- a/lib/vagrant/command/status.rb +++ b/lib/vagrant/command/status.rb @@ -6,8 +6,6 @@ module Vagrant register "status" def route - require_environment - state = nil results = env.vms.collect do |name, vm| state ||= vm.created? ? vm.vm.state.to_s : "not_created"