From 7067cde6576b19f6ea910a505f049b3c746c115c Mon Sep 17 00:00:00 2001 From: dundargoc <33953936+dundargoc@users.noreply.github.com> Date: Wed, 28 Dec 2022 22:50:24 +0100 Subject: [PATCH] build(lintsh): double quote to prevent word splitting (#21571) --- scripts/download-unicode-files.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/download-unicode-files.sh b/scripts/download-unicode-files.sh index 687b946e6f..f0fd4c66ea 100755 --- a/scripts/download-unicode-files.sh +++ b/scripts/download-unicode-files.sh @@ -30,7 +30,7 @@ done for filename in $emoji_files ; do curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/UNIDATA/emoji/$filename" - git -C "$UNIDIR" add $filename + git -C "$UNIDIR" add "$filename" done git -C "$UNIDIR" commit -m "feat: update unicode tables" .