========== shellcheck - FAILED ====== Checking before the patch ====== ====== Checking the tree with the patch ====== scripts/hornet/write-sig.sh is a new file, but not shellcheck compliant New errors added --- /tmp/tmp.rAws5Hy7aL 2025-12-10 22:34:18.304469369 -0500 +++ /tmp/tmp.VwnX7pYs7r 2025-12-10 22:34:18.431468426 -0500 @@ -0,0 +1,18 @@ + +In write-sig.sh line 25: + SIG=$(xxd -p $2 | tr -d '\n' | sed 's/\(..\)/\\\\x\1/g') + ^-- SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + SIG=$(xxd -p "$2" | tr -d '\n' | sed 's/\(..\)/\\\\x\1/g') + + +In write-sig.sh line 26: + sed '/const char opts_sig/,/;/c\\tstatic const char opts_sig[] __attribute__((__aligned__(8))) = "\\\n'"$(printf '%s\n' "$SIG")"'\";' $1 + ^-- SC2086 (info): Double quote to prevent globbing and word splitting. + +Did you mean: + sed '/const char opts_sig/,/;/c\\tstatic const char opts_sig[] __attribute__((__aligned__(8))) = "\\\n'"$(printf '%s\n' "$SIG")"'\";' "$1" + +For more information: + https://www.shellcheck.net/wiki/SC2086 -- Double quote to prevent globbing ...