aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorckelsel <ckelsel@hotmail.com>2017-07-02 09:27:32 +0800
committerckelsel <ckelsel@hotmail.com>2017-07-02 09:27:32 +0800
commit1514cdc7d8863eeee6b04883b1c50aac40048b49 (patch)
tree5f4cba6d5746d704cae7fad886afe08f7e6fd06f /scripts
parentb96f43f2b86cbac3f34691fd97bce4cdb9d6aed9 (diff)
parentca4633bfe4d0f58bd5fb7343d282fafb71f3a3ee (diff)
downloadrneovim-1514cdc7d8863eeee6b04883b1c50aac40048b49.tar.gz
rneovim-1514cdc7d8863eeee6b04883b1c50aac40048b49.tar.bz2
rneovim-1514cdc7d8863eeee6b04883b1c50aac40048b49.zip
Merge remote-tracking branch 'upstream/master'
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/download-unicode-files.sh4
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