From ffa6d2810dc86da6f076222678bbbe381f82fe84 Mon Sep 17 00:00:00 2001 From: Chris Roberts Date: Thu, 22 Feb 2018 09:46:24 -0800 Subject: [PATCH] Remove end of line matcher from progress regexp --- lib/vagrant/util/downloader.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/vagrant/util/downloader.rb b/lib/vagrant/util/downloader.rb index b61103d6f..2812dc3ab 100644 --- a/lib/vagrant/util/downloader.rb +++ b/lib/vagrant/util/downloader.rb @@ -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.