diff options
author | James McCoy <jamessan@jamessan.com> | 2017-06-30 17:52:16 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-06-30 17:52:16 +0000 |
commit | fcbc7a8db4819894bf152a89fc4dcd243b084d8a (patch) | |
tree | 401fa4d09c43f724cec358e5c7dd4386d1ef248a /scripts | |
parent | 42d892913daa215c27e41b2255e96c1ce09ea56c (diff) | |
parent | 03fc0e3f4110740b95849cfc98d7714dedd1a9dd (diff) | |
download | rneovim-fcbc7a8db4819894bf152a89fc4dcd243b084d8a.tar.gz rneovim-fcbc7a8db4819894bf152a89fc4dcd243b084d8a.tar.bz2 rneovim-fcbc7a8db4819894bf152a89fc4dcd243b084d8a.zip |
Merge pull request #6936 from jamessan/unicode-10
Update to Unicode 10
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/download-unicode-files.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/download-unicode-files.sh b/scripts/download-unicode-files.sh index 54fc32550c..5f38d0589a 100755 --- a/scripts/download-unicode-files.sh +++ b/scripts/download-unicode-files.sh @@ -22,7 +22,7 @@ UNIDIR=${1:-$UNIDIR_DEFAULT} DOWNLOAD_URL_BASE=${2:-$DOWNLOAD_URL_BASE_DEFAULT} for filename in $data_files ; do - curl -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/UNIDATA/$filename" + curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/UNIDATA/$filename" ( cd "$UNIDIR" git add $filename @@ -30,7 +30,7 @@ for filename in $data_files ; do done for filename in $emoji_files ; do - curl -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/emoji/3.0/$filename" + curl -L -o "$UNIDIR/$filename" "$DOWNLOAD_URL_BASE/emoji/latest/$filename" ( cd "$UNIDIR" git add $filename |