diff options
author | dundargoc <33953936+dundargoc@users.noreply.github.com> | 2022-12-28 22:50:24 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-28 22:50:24 +0100 |
commit | 7067cde6576b19f6ea910a505f049b3c746c115c (patch) | |
tree | 4a5614b9b46c0abcce6a08c581ee8917abc670a9 | |
parent | 86a75c79e1c0c4e78a7e8cfca5e94207a43db672 (diff) | |
download | rneovim-7067cde6576b19f6ea910a505f049b3c746c115c.tar.gz rneovim-7067cde6576b19f6ea910a505f049b3c746c115c.tar.bz2 rneovim-7067cde6576b19f6ea910a505f049b3c746c115c.zip |
build(lintsh): double quote to prevent word splitting (#21571)
-rwxr-xr-x | scripts/download-unicode-files.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" . |