From 3a77c2096d102e43afb7a145c938b68c83f065ab Mon Sep 17 00:00:00 2001 From: Beat Bolli Date: Fri, 19 Dec 2014 17:24:22 +0100 Subject: [PATCH] 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 Signed-off-by: Junio C Hamano --- update_unicode.sh | 4 ++-- 1 file 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 ) -- 2.11.4.GIT