From 27d5ffa3d60b706b5d8d4d3fcc58ce3518251aa8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 25 Aug 2010 13:33:31 -0700 Subject: [PATCH] Fix vagrant status with multi-vm [closes GH-146] --- lib/vagrant/command/status.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/command/status.rb b/lib/vagrant/command/status.rb index 71173a807..ffd6db26a 100644 --- a/lib/vagrant/command/status.rb +++ b/lib/vagrant/command/status.rb @@ -7,7 +7,7 @@ module Vagrant def route require_environment - show_multivm if target_vms.length > 1 + return show_multivm if target_vms.length > 1 show_single(target_vms.first) end