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:
commit
f8f38460c6
|
@ -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
|
||||
|
|
|
@ -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: |-
|
||||
|
|
Loading…
Reference in New Issue