core: don't output \e[0K on Windows [GH-2246]

This commit is contained in:
Mitchell Hashimoto 2013-09-20 17:20:29 -07:00
parent 1cb9c901c7
commit 33a36830fe
2 changed files with 1 additions and 1 deletions

View File

@ -2,6 +2,7 @@
BUG FIXES:
- core: Don't output `\e[0K` anymore on Windows. [GH-2246]
- hosts/arch: Vagrant won't crash on Arch anymore. [GH-2233]
## 1.3.3 (September 18, 2013)

View File

@ -113,7 +113,6 @@ module Vagrant
def clear_line
reset = "\r"
reset += "\e[0K" if Util::Platform.windows? && !Util::Platform.cygwin?
info(reset, :new_line => false)
end