diff options
author | Petr Štetiar <ynezz@true.cz> | 2020-07-11 13:31:35 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-07-11 14:42:32 +0200 |
commit | dec9ae6d9e8352498b19287b6361c83701308662 (patch) | |
tree | ca2d92292fa0ec9685246de4c5b95cdd84e29bf7 | |
parent | 3d418dd51ed217317fd5c4815cd1919ba1875dfb (diff) | |
download | upstream-dec9ae6d9e8352498b19287b6361c83701308662.tar.gz upstream-dec9ae6d9e8352498b19287b6361c83701308662.tar.bz2 upstream-dec9ae6d9e8352498b19287b6361c83701308662.zip |
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>
-rwxr-xr-x | scripts/mkits.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mkits.sh b/scripts/mkits.sh index 62cfc21c6b..65071e13ee 100755 --- a/scripts/mkits.sh +++ b/scripts/mkits.sh @@ -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'" |