diff options
author | James McCoy <jamessan@jamessan.com> | 2020-10-04 11:50:29 -0400 |
---|---|---|
committer | James McCoy <jamessan@jamessan.com> | 2020-10-04 11:50:29 -0400 |
commit | ec057d40f3de21f80a888784e407554d035db813 (patch) | |
tree | d8c8302bcd6054e41441490bb644fef8dba30887 | |
parent | f6ac375604238c94d3dc3eeb9b82e67417460806 (diff) | |
download | rneovim-ec057d40f3de21f80a888784e407554d035db813.tar.gz rneovim-ec057d40f3de21f80a888784e407554d035db813.tar.bz2 rneovim-ec057d40f3de21f80a888784e407554d035db813.zip |
Download emoji-data from UNIDATA/
-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 |