Merge pull request #10573 from briancain/show-box-version-on-up
Fixes #10339: Show box version during outdated check
This commit is contained in:
commit
e1a13714c0
|
@ -51,7 +51,8 @@ module Vagrant
|
|||
|
||||
env[:ui].output(I18n.t(
|
||||
"vagrant.box_outdated_checking_with_refresh",
|
||||
name: box.name))
|
||||
name: box.name,
|
||||
version: box.version))
|
||||
update = nil
|
||||
begin
|
||||
update = box.has_update?(constraints, download_options: download_options)
|
||||
|
|
|
@ -46,7 +46,7 @@ en:
|
|||
box_outdated: |-
|
||||
* '%{name}' for '%{provider}' is outdated! Current: %{current}. Latest: %{latest}
|
||||
box_outdated_checking_with_refresh: |-
|
||||
Checking if box '%{name}' is up to date...
|
||||
Checking if box '%{name}' version '%{version}' is up to date...
|
||||
box_outdated_local: |-
|
||||
A newer version of the box '%{name}' is available and already
|
||||
installed, but your Vagrant machine is running against
|
||||
|
|
Loading…
Reference in New Issue