From e167fa970f34adaeeac05db7e57c7d6b5307bb2d Mon Sep 17 00:00:00 2001 From: Ralph Ronnquist Date: Sun, 27 Mar 2022 10:46:12 +1100 Subject: [PATCH] bug fix --- overlay-stop | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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% }" } -- 2.39.2