Remove end of line matcher from progress regexp

This commit is contained in:
Chris Roberts 2018-02-22 09:46:24 -08:00
parent 04e05088ff
commit ffa6d2810d
1 changed files with 1 additions and 1 deletions

View File

@ -89,7 +89,7 @@ module Vagrant
extra_subprocess_opts[:notify] = :stderr
progress_data = ""
progress_regexp = /^\r\s*(\d.+)\r$/m
progress_regexp = /^\r\s*(\d.+?)\r/m
# Setup the proc that'll receive the real-time data from
# the downloader.