From bf27d783cc896b49f82ccdd85d64a8ceb89429fc Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 27 Aug 2010 10:02:17 -0700 Subject: [PATCH] Rescue from new scoped Vagrant::Errors::VagrantError --- bin/vagrant | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/vagrant b/bin/vagrant index babaee67d..d79b53ade 100755 --- a/bin/vagrant +++ b/bin/vagrant @@ -6,7 +6,7 @@ env = Vagrant::Environment.load! begin Vagrant::CLI.start(ARGV, :env => env) -rescue Vagrant::VagrantError => e +rescue Vagrant::Errors::VagrantError => e env.ui.error e.message, false env.ui.error e.backtrace.join("\n"), false if ENV["VAGRANT_DEBUG"] exit e.status_code