mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2026-03-14 23:09:45 +01:00
scripts/mkits.sh: fix remaining shellcheck warning
Fixes following shellcheck warning:
In scripts/mkits.sh line 19:
"-k kernel [-D name -d dtb] -o its_file" "$(basename $0)"
^-- SC2086: Double quote to prevent globbing and word splitting.
Signed-off-by: Petr Štetiar <ynezz@true.cz>
This commit is contained in:
parent
3d418dd51e
commit
dec9ae6d9e
1 changed files with 1 additions and 1 deletions
|
|
@ -16,7 +16,7 @@
|
|||
|
||||
usage() {
|
||||
printf "Usage: %s -A arch -C comp -a addr -e entry -v version"\
|
||||
"-k kernel [-D name -d dtb] -o its_file" "$(basename $0)"
|
||||
"-k kernel [-D name -d dtb] -o its_file" "$(basename "$0")"
|
||||
printf "\n\t-A ==> set architecture to 'arch'"
|
||||
printf "\n\t-C ==> set compression type 'comp'"
|
||||
printf "\n\t-c ==> set config name 'config'"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue