Commit 407651b3 authored by Mario Trangoni's avatar Mario Trangoni

shellcheck: Fix SC2048 issue

See, $ find . -name "*.sh" | xargs shellcheck -i SC2048 In ./nx-X11/lib/src/util/mkks.sh line 10: }' $* ^-- SC2048: Use "$@" (with quotes) to prevent whitespace problems. For more information: https://www.shellcheck.net/wiki/SC2048 -- Use "$@" (with quotes) to prevent... Signed-off-by: 's avatarMario Trangoni <mjtrangoni@gmail.com>
parent afe0c147
......@@ -7,4 +7,4 @@ awk 'BEGIN { \
/^#define/ { \
len = length($2)-3; \
printf("{ \"%s\", %s },\n", substr($2,4,len), $3); \
}' $*
}' "$@"
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment