1
0
mirror of https://git.openwrt.org/openwrt/openwrt.git synced 2024-10-18 05:18:14 +02:00

scripts/mkits.sh: fix improper string and array concatenation

Found with shellcheck.

Signed-off-by: Rosen Penev <rosenp@gmail.com>
This commit is contained in:
Rosen Penev 2020-01-05 18:31:19 -08:00 committed by Petr Štetiar
parent 765858f7ad
commit 7aefc85cab

@ -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