From: Rosen Penev Date: Mon, 6 Jan 2020 02:31:19 +0000 (-0800) Subject: scripts/mkits.sh: fix improper string and array concatenation X-Git-Url: http://git.cdn.openwrt.org/?a=commitdiff_plain;h=7aefc85cab8c924565ae002481f0f43164e1d3d1;p=openwrt%2Fstaging%2Fansuel.git scripts/mkits.sh: fix improper string and array concatenation Found with shellcheck. Signed-off-by: Rosen Penev --- diff --git a/scripts/mkits.sh b/scripts/mkits.sh index 53b9ec5f20..c09e537dbd 100755 --- a/scripts/mkits.sh +++ b/scripts/mkits.sh @@ -43,7 +43,7 @@ do k ) KERNEL=$OPTARG;; o ) OUTPUT=$OPTARG;; v ) VERSION=$OPTARG;; - * ) echo "Invalid option passed to '$0' (options:$@)" + * ) echo "Invalid option passed to '$0' (options:$*)" usage;; esac done