Skip to content

Commit

Permalink
update_unicode.sh: simplify output capture
Browse files Browse the repository at this point in the history
Instead of capturing the output of each echo and uniset invocation,
wrap the whole section in a group command and redirect its output
all at once.

Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Beat Bolli authored and Junio C Hamano committed Dec 22, 2014
1 parent 9b7cbb3 commit 2aa590c
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions update_unicode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,13 @@ fi &&
./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb'
fi &&
make
) &&
echo "static const struct interval zero_width[] = {" >$UNICODEWIDTH_H &&
UNICODE_DIR=. ./uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
grep -v plane >>$UNICODEWIDTH_H &&
echo "};" >>$UNICODEWIDTH_H &&
echo "static const struct interval double_width[] = {" >>$UNICODEWIDTH_H &&
UNICODE_DIR=. ./uniset/uniset --32 eaw:F,W >>$UNICODEWIDTH_H &&
echo "};" >>$UNICODEWIDTH_H
) && {
echo "static const struct interval zero_width[] = {" &&
UNICODE_DIR=. ./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 &&
echo "};"
} >$UNICODEWIDTH_H
)

0 comments on commit 2aa590c

Please sign in to comment.