scripts/misc-check: add double-quotes to satisfy shellcheck
authorMasahiro Yamada <masahiroy@kernel.org>
Sun, 1 Jun 2025 13:31:28 +0000 (22:31 +0900)
committerMasahiro Yamada <masahiroy@kernel.org>
Thu, 5 Jun 2025 20:40:25 +0000 (05:40 +0900)
commit3a44052b728e5d96ea425f908e71926364a12f11
tree7928114e3ed81cb945e5a29ff8aed405743746bd
parent89e7fecf5ce2e85a323e58f09aa808218a37079a
scripts/misc-check: add double-quotes to satisfy shellcheck

In scripts/misc-check line 8:
        git -C ${srctree:-.} ls-files -i -c --exclude-per-directory=.gitignore 2>/dev/null |
               ^-----------^ SC2086 (info): Double quote to prevent globbing and word splitting.

Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
scripts/misc-check