aboutsummaryrefslogtreecommitdiff
path: root/update_unicode.sh
diff options
context:
space:
mode:
authorBeat Bolli <dev+git@drbeat.li>2014-12-19 17:24:21 +0100
committerJunio C Hamano <gitster@pobox.com>2014-12-22 10:02:46 -0800
commit69d84a3b58464f1a60a1f93642ecd727a26067fa (patch)
tree6dfdb828e43440913a16bcafcda9fdbe24e95846 /update_unicode.sh
parent2aa590cb0761818fec9198ba4a1854310e1e0bf1 (diff)
downloadgit-69d84a3b58464f1a60a1f93642ecd727a26067fa.tar.gz
git-69d84a3b58464f1a60a1f93642ecd727a26067fa.tar.xz
update_unicode.sh: set UNICODE_DIR only once
The value is the same on both uniset invocations, so "Don't Repeat Yourself" applies. Since this is done as the last command in the sequence, there's no need to unset UNICODE_DIR at the end. 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-xupdate_unicode.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/update_unicode.sh b/update_unicode.sh
index c1c876c94..bed891691 100755
--- a/update_unicode.sh
+++ b/update_unicode.sh
@@ -27,12 +27,13 @@ fi &&
fi &&
make
) && {
+ UNICODE_DIR=. && export UNICODE_DIR &&
echo "static const struct interval zero_width[] = {" &&
- UNICODE_DIR=. ./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[] = {" &&
- UNICODE_DIR=. ./uniset/uniset --32 eaw:F,W &&
+ ./uniset/uniset --32 eaw:F,W &&
echo "};"
} >$UNICODEWIDTH_H
)