scripts/mkits.sh: fix remaining shellcheck warning
authorPetr Štetiar <ynezz@true.cz>
Sat, 11 Jul 2020 11:31:35 +0000 (13:31 +0200)
committerPetr Štetiar <ynezz@true.cz>
Sat, 11 Jul 2020 12:42:32 +0000 (14:42 +0200)
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>
scripts/mkits.sh

index 62cfc21c6b87e4f010585aabe1060325dd15888e..65071e13ee930bb73b282c28e31c27420b759819 100755 (executable)
@@ -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'"