From e3e633394defeb88d69b8bca2c608da0c4be838f Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Mon, 28 Aug 2017 15:21:21 +0200 Subject: __dyn_install: fix output by fixing the call to padl In case both build tree and image tree are larger than 1MiB, the output would lack MiB/GiB/etc and be misaligned due to the arguments not being quoted. --- bin/phase-functions.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/phase-functions.sh b/bin/phase-functions.sh index ce174ba91..7fc798e7f 100644 --- a/bin/phase-functions.sh +++ b/bin/phase-functions.sh @@ -638,7 +638,7 @@ __dyn_install() { s1=$(human ${s1}) if [[ ${s2} -gt 1024 ]] ; then s2=$(human ${s2}) - s1=$(padl ${s1} ${s2}) + s1=$(padl "${s1}" "${s2}") fi out+=" (${s1})" fi -- cgit v1.2.3-65-gdbad