From 53f9375cf2e960ef7908d1f8d6e1223ea2d1fca1 Mon Sep 17 00:00:00 2001 From: "Kyle J. McKay" Date: Sun, 1 Aug 2021 20:36:10 -0700 Subject: [PATCH] update-all-config.pl: correct cosmetic message output issue Messages could be output with improper end-of-line characters resulting in distorted message display. The code was there to make sure that didn't happen but was not fully hooked up. Hook it up now. Signed-off-by: Kyle J. McKay --- toolbox/update-all-config.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toolbox/update-all-config.pl b/toolbox/update-all-config.pl index 2c2dbdf..f574876 100755 --- a/toolbox/update-all-config.pl +++ b/toolbox/update-all-config.pl @@ -706,7 +706,7 @@ sub pmsg { $prefix = $wrote . $proj . ":\n"; $hdr = 1; } - $progress->emit($prefix . " " . join(' ', @_) . "\n"); + $progress->emit($prefix . " " . $msg . "\n"); $wrote = "\n"; } -- 2.11.4.GIT