commands/box: show version
This commit is contained in:
parent
e7277f5e83
commit
d45eb1f183
|
@ -17,6 +17,7 @@ BUG FIXES:
|
|||
- core: private networks with DHCP type work if type parameter is
|
||||
a string and not a symbol. [GH-3349]
|
||||
- core: Converting to cygwin path works for folders with spaces. [GH-3304]
|
||||
- commands/box: Show versions when listing. [GH-3316]
|
||||
- commands/status: Machine readable output contains the target. [GH-3218]
|
||||
- guests/arch: Reload udev rules after network change. [GH-3322]
|
||||
- guests/debian: Changing host name works properly. [GH-3283]
|
||||
|
|
|
@ -45,7 +45,7 @@ module VagrantPlugins
|
|||
# important for the user to know what boxes need to be upgraded
|
||||
# and which don't, since we plan on doing that transparently.
|
||||
boxes.each do |name, version, provider|
|
||||
@env.ui.info("#{name.ljust(longest_box_length)} (#{provider}) [#{version}]")
|
||||
@env.ui.info("#{name.ljust(longest_box_length)} (#{provider}, #{version})")
|
||||
|
||||
@env.ui.machine("box-name", name)
|
||||
@env.ui.machine("box-provider", provider)
|
||||
|
|
Loading…
Reference in New Issue