summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeat Bolli <dev+git@drbeat.li>2014-12-19 17:24:20 +0100
committerJunio C Hamano <gitster@pobox.com>2014-12-22 10:02:38 -0800
commit2aa590cb0761818fec9198ba4a1854310e1e0bf1 (patch)
tree133e08c5c095aef51b81df2fb581244c865eb95b
parent9b7cbb315923e61bb0c4297c701089f30e116750 (diff)
downloadgit-2aa590cb0761818fec9198ba4a1854310e1e0bf1.tar.gz
update_unicode.sh: simplify output capture
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>
-rwxr-xr-xupdate_unicode.sh17
1 files changed, 9 insertions, 8 deletions
diff --git a/update_unicode.sh b/update_unicode.sh
index 000b937e68..c1c876c940 100755
--- a/update_unicode.sh
+++ b/update_unicode.sh
@@ -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
)