From: Ralph Ronnquist Date: Sat, 26 Mar 2022 23:46:12 +0000 (+1100) Subject: bug fix X-Git-Tag: deb_0.1 X-Git-Url: https://git.rrq.au/?a=commitdiff_plain;h=e167fa970f34adaeeac05db7e57c7d6b5307bb2d;hp=018cee4d13bc670479131ae2167dad4824ab1c47;p=rrq%2Foverlay-boot.git bug fix --- diff --git a/overlay-stop b/overlay-stop index 82961ec..2788413 100755 --- a/overlay-stop +++ b/overlay-stop @@ -31,7 +31,7 @@ fi # function to reverse the $* words reverse() { local OUT="" - for w in $* ; do ; OUT="$w $OUT" ; done + for w in $* ; do OUT="$w $OUT" ; done echo "${OUT% }" }