core: make sure the env has the UI in it for adding boxes

This commit is contained in:
Mitchell Hashimoto 2014-01-24 09:56:37 -08:00
parent a73ea6ab7a
commit e316e10552
1 changed files with 2 additions and 2 deletions

View File

@ -67,14 +67,14 @@ module Vagrant
env[:ui].detail("Box Version: #{machine.config.vm.box_version}") env[:ui].detail("Box Version: #{machine.config.vm.box_version}")
begin begin
env[:action_runner].run(Vagrant::Action.action_box_add, { env[:action_runner].run(Vagrant::Action.action_box_add, env.merge({
box_url: machine.config.vm.box, box_url: machine.config.vm.box,
box_provider: box_formats, box_provider: box_formats,
box_version: machine.config.vm.box_version, box_version: machine.config.vm.box_version,
box_client_cert: box_download_client_cert, box_client_cert: box_download_client_cert,
box_download_ca_cert: box_download_ca_cert, box_download_ca_cert: box_download_ca_cert,
box_download_insecure: box_download_insecure, box_download_insecure: box_download_insecure,
}) }))
rescue Errors::BoxAlreadyExists rescue Errors::BoxAlreadyExists
# Just ignore this, since it means the next part will succeed! # Just ignore this, since it means the next part will succeed!
# This can happen in a multi-threaded environment. # This can happen in a multi-threaded environment.