From: Beat Bolli Date: Fri, 19 Dec 2014 16:24:22 +0000 (+0100) Subject: update_unicode.sh: shorten uniset invocation path X-Git-Tag: v2.3.0-rc0~16^2~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=3a77c2096d102e43afb7a145c938b68c83f065ab;p=thirdparty%2Fgit.git 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 --- 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 )