update_unicode.sh: shorten uniset invocation path

"uniset/uniset" is a relative path; there's no need to prefix it
with "./".

Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Beat Bolli 2014-12-19 17:24:22 +01:00 committed by Junio C Hamano
parent 69d84a3b58
commit 3a77c2096d

View File

@ -29,11 +29,11 @@ fi &&
) && { ) && {
UNICODE_DIR=. && export UNICODE_DIR && UNICODE_DIR=. && export UNICODE_DIR &&
echo "static const struct interval zero_width[] = {" && echo "static const struct interval zero_width[] = {" &&
./uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD | uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
grep -v plane && grep -v plane &&
echo "};" && echo "};" &&
echo "static const struct interval double_width[] = {" && echo "static const struct interval double_width[] = {" &&
./uniset/uniset --32 eaw:F,W && uniset/uniset --32 eaw:F,W &&
echo "};" echo "};"
} >$UNICODEWIDTH_H } >$UNICODEWIDTH_H
) )