From 3f62addac2db97bae77c91c8e238dfe75dddf4df Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Fri, 17 Jan 2014 21:53:17 -0800 Subject: [PATCH] core: make output white for now --- lib/vagrant/plugin/v2/command.rb | 2 +- lib/vagrant/ui.rb | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/vagrant/plugin/v2/command.rb b/lib/vagrant/plugin/v2/command.rb index 9a634b7d1..146e502ac 100644 --- a/lib/vagrant/plugin/v2/command.rb +++ b/lib/vagrant/plugin/v2/command.rb @@ -188,7 +188,7 @@ module Vagrant machines.reverse! if options[:reverse] # Go through each VM and yield it! - color_order = [:green, :cyan, :magenta, :yellow, :blue] + color_order = [:white] color_index = 0 machines.each do |machine| diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb index 6d1a4faf2..b24f427b1 100644 --- a/lib/vagrant/ui.rb +++ b/lib/vagrant/ui.rb @@ -277,6 +277,7 @@ module Vagrant blue: 34, magenta: 35, cyan: 36, + white: 37, } # This is called by `say` to format the message for output.