diff --git a/lib/vagrant/util/platform.rb b/lib/vagrant/util/platform.rb index 3e454a0e9..ac3f8ecf3 100644 --- a/lib/vagrant/util/platform.rb +++ b/lib/vagrant/util/platform.rb @@ -107,7 +107,12 @@ module Vagrant # Returns a boolean noting whether the terminal supports color. # output. def terminal_supports_colors? - return ENV.has_key?("ANSICON") || cygwin? if windows? + if windows? + return true if ENV.has_key?("ANSICON") + return true if cygwin? + return false + end + true end