commit 7067cde6576b19f6ea910a505f049b3c746c115c
parent 86a75c79e1c0c4e78a7e8cfca5e94207a43db672
Author: dundargoc <33953936+dundargoc@users.noreply.github.com>
Date: Wed, 28 Dec 2022 22:50:24 +0100
build(lintsh): double quote to prevent word splitting (#21571)
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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" .