diff options
author | James McCoy <jamessan@jamessan.com> | 2020-10-05 06:40:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-05 06:40:29 -0400 |
commit | e3afb30e69cc310f9f5ab776d33dc7acaf428981 (patch) | |
tree | 2910b0186e431170da002a91751d600ac2bf3a98 /scripts/download-unicode-files.sh | |
parent | 7996d9ece13fbececea7c278ae423d9f1c4581ec (diff) | |
parent | aadf85f3cae6979562b9ab0759c53392064c0259 (diff) | |
download | rneovim-e3afb30e69cc310f9f5ab776d33dc7acaf428981.tar.gz rneovim-e3afb30e69cc310f9f5ab776d33dc7acaf428981.tar.bz2 rneovim-e3afb30e69cc310f9f5ab776d33dc7acaf428981.zip |
Merge pull request #13045 from jamessan/unicode-13
Diffstat (limited to 'scripts/download-unicode-files.sh')
-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 5f38d0589a..12474d3c1e 100755 --- a/scripts/download-unicode-files.sh +++ b/scripts/download-unicode-files.sh @@ -30,7 +30,7 @@ for filename in $data_files ; do done for filename in $emoji_files ; do - curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/emoji/latest/$filename" + curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/UNIDATA/emoji/$filename" ( cd "$UNIDIR" git add $filename |