core: don't output \e[0K on Windows [GH-2246]
This commit is contained in:
parent
1cb9c901c7
commit
33a36830fe
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue