providers/virtualbox: import progress works on Windows

This commit is contained in:
Mitchell Hashimoto 2014-03-12 20:02:05 -07:00
parent 621369ebba
commit a8fa2d5ffe
2 changed files with 2 additions and 1 deletions

View File

@ -22,6 +22,7 @@ BUG FIXES:
- hosts/linux: Unusual sed delimiter to avoid conflicts. [GH-3167]
- providers/virtualbox: Make more internal interactions with VBoxManage
retryable to avoid spurious VirtualBox errors. [GH-2831]
- providers/virtualbox: Import progress works again on Windows.
- provisioners/ansible: Request SSH info within the provision method,
when we know its available. [GH-3111]
- synced\_folders/rsync: owner/group settings work. [GH-3163]

View File

@ -203,7 +203,7 @@ module VagrantPlugins
output << data
elsif type == :stderr
# Append the data so we can see the full view
total << data
total << data.gsub("\r", "")
# Break up the lines. We can't get the progress until we see an "OK"
lines = total.split("\n")