From 104066c678d75c9f26846d15240c98fef9cb4e54 Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Mon, 23 Nov 2015 09:10:10 -0800 Subject: [PATCH] core: assume all windows shells now have TTYs --- lib/vagrant/ui.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb index 80adf2e88..384bb7667 100644 --- a/lib/vagrant/ui.rb +++ b/lib/vagrant/ui.rb @@ -159,7 +159,7 @@ module Vagrant super(message) # We can't ask questions when the output isn't a TTY. - raise Errors::UIExpectsTTY if !@stdin.tty? && !Vagrant::Util::Platform.cygwin? + raise Errors::UIExpectsTTY if !@stdin.tty? && !Vagrant::Util::Platform.windows? # Setup the options so that the new line is suppressed opts ||= {}