core: assume all windows shells now have TTYs

This commit is contained in:
Mitchell Hashimoto 2015-11-23 09:10:10 -08:00
parent c7f00be42c
commit 104066c678
1 changed files with 1 additions and 1 deletions

View File

@ -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 ||= {}