From b38876ac5058cec0e3b5f271292bb89ba7da0cb8 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 14 Mar 2014 17:44:31 -0700 Subject: [PATCH] core: pass along the UI class so we don't get a silent UI --- lib/vagrant/plugin/v2/command.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/vagrant/plugin/v2/command.rb b/lib/vagrant/plugin/v2/command.rb index 52dd63733..df7256319 100644 --- a/lib/vagrant/plugin/v2/command.rb +++ b/lib/vagrant/plugin/v2/command.rb @@ -138,6 +138,7 @@ module Vagrant env = Vagrant::Environment.new( cwd: entry.vagrantfile_path, home_path: @env.home_path, + ui_class: @env.ui_class, ) env.machine(entry.name.to_sym, entry.provider.to_sym) end