update_unicode.sh: automatically download newer definition files
Checking just for the unicode data files' existence is not sufficient; we should also download them if a newer version exists on the Unicode consortium's servers. Option -N of wget does this nicely for us. Reviewed-by: Torsten Bögershausen <tboegi@web.de> Signed-off-by: Beat Bolli <dev+git@drbeat.li> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
3f0a386309
commit
fef54f3162
@ -8,12 +8,8 @@
|
|||||||
cd "$(dirname "$0")"
|
cd "$(dirname "$0")"
|
||||||
UNICODEWIDTH_H=$(git rev-parse --show-toplevel)/unicode_width.h
|
UNICODEWIDTH_H=$(git rev-parse --show-toplevel)/unicode_width.h
|
||||||
|
|
||||||
if ! test -f UnicodeData.txt; then
|
wget -N http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt \
|
||||||
wget http://www.unicode.org/Public/UCD/latest/ucd/UnicodeData.txt
|
http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt &&
|
||||||
fi &&
|
|
||||||
if ! test -f EastAsianWidth.txt; then
|
|
||||||
wget http://www.unicode.org/Public/UCD/latest/ucd/EastAsianWidth.txt
|
|
||||||
fi &&
|
|
||||||
if ! test -d uniset; then
|
if ! test -d uniset; then
|
||||||
git clone https://github.com/depp/uniset.git &&
|
git clone https://github.com/depp/uniset.git &&
|
||||||
( cd uniset && git checkout 4b186196dd )
|
( cd uniset && git checkout 4b186196dd )
|
||||||
|
Reference in New Issue
Block a user