diff options
author | Beat Bolli <dev+git@drbeat.li> | 2014-12-19 17:24:22 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-12-22 10:03:24 -0800 |
commit | 3a77c2096d102e43afb7a145c938b68c83f065ab (patch) | |
tree | 6818a850c5ad9cfc0e13ca0e3d446112885cb16f /update_unicode.sh | |
parent | 69d84a3b58464f1a60a1f93642ecd727a26067fa (diff) | |
download | git-3a77c2096d102e43afb7a145c938b68c83f065ab.tar.gz |
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>
Diffstat (limited to 'update_unicode.sh')
-rwxr-xr-x | update_unicode.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/update_unicode.sh b/update_unicode.sh index bed8916910..f5cc14b338 100755 --- a/update_unicode.sh +++ b/update_unicode.sh @@ -29,11 +29,11 @@ fi && ) && { UNICODE_DIR=. && export UNICODE_DIR && 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 && echo "};" && echo "static const struct interval double_width[] = {" && - ./uniset/uniset --32 eaw:F,W && + uniset/uniset --32 eaw:F,W && echo "};" } >$UNICODEWIDTH_H ) |