From 50bf36e747755b1f02097a654fd5feed5c820943 Mon Sep 17 00:00:00 2001 From: Christian Berendt Date: Tue, 25 Mar 2014 18:45:13 +0100 Subject: [PATCH] display version by default when listing boxes example usage: $ vagrant box list berendt/ubuntu-14.04-amd64 (virtualbox) [0.1.3] berendt/ubuntu-14.04-amd64 (virtualbox) [0.1.4] berendt/ubuntu-14.04-amd64 (virtualbox) [0.1.5] related to issue #3313 --- plugins/commands/box/command/list.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/commands/box/command/list.rb b/plugins/commands/box/command/list.rb index 6c2f82e22..92d555935 100644 --- a/plugins/commands/box/command/list.rb +++ b/plugins/commands/box/command/list.rb @@ -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})") + @env.ui.info("#{name.ljust(longest_box_length)} (#{provider}) [#{version}]") @env.ui.machine("box-name", name) @env.ui.machine("box-provider", provider)