Merge pull request #3438 from berendt/show_version_when_removing_a_specific_box

print version when removing a specific box
This commit is contained in:
Mitchell Hashimoto 2014-04-11 09:30:38 -07:00
commit f8f38460c6
2 changed files with 3 additions and 2 deletions

View File

@ -73,7 +73,8 @@ module Vagrant
env[:ui].info(I18n.t("vagrant.commands.box.removing",
:name => box.name,
:provider => box.provider))
:provider => box.provider,
:version => box.version))
box.destroy!
# Passes on the removed box to the rest of the middleware chain

View File

@ -1168,7 +1168,7 @@ en:
box:
no_installed_boxes: "There are no installed boxes! Use `vagrant box add` to add some."
removing: |-
Removing box '%{name}' with provider '%{provider}'...
Removing box '%{name}' with provider '%{provider}' in version '%{version}'...
destroy:
confirmation: "Are you sure you want to destroy the '%{name}' VM? [y/N] "
will_not_destroy: |-