From 4b87e58fe4394dde6b9024c7ca666e8f60f7ce8b Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Thu, 24 Feb 2022 11:32:53 +0100 Subject: [PATCH] s3:script: Fix shellcheck errors in mksyms.sh MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit source3/script/mksyms.sh:33:19: error: Double quote array expansions to avoid re-splitting elements. [SC2068] Signed-off-by: Andreas Schneider Reviewed-by: Pavel Filipenský --- source3/script/mksyms.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/script/mksyms.sh b/source3/script/mksyms.sh index 2a412ec8bdf..9a0868510e6 100755 --- a/source3/script/mksyms.sh +++ b/source3/script/mksyms.sh @@ -30,7 +30,7 @@ symsfile="$1" shift symsfile_tmp="$symsfile.$$.tmp~" -proto_src="$(echo $@ | tr ' ' '\n' | sort | uniq)" +proto_src="$(echo "$@" | tr ' ' '\n' | sort | uniq)" echo creating $symsfile -- 2.11.4.GIT