OSDN Git Service

update_unicode.sh: delete the command group
authorBeat Bolli <dev+git@drbeat.li>
Fri, 19 Dec 2014 16:24:24 +0000 (17:24 +0100)
committerJunio C Hamano <gitster@pobox.com>
Mon, 22 Dec 2014 18:03:37 +0000 (10:03 -0800)
Now that the whole file is generated by one single command, the
command group is no longer needed.

Signed-off-by: Beat Bolli <dev+git@drbeat.li>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
update_unicode.sh

index d7343b9..27af77c 100755 (executable)
@@ -26,16 +26,15 @@ fi &&
                        ./configure --enable-warnings=-Werror CFLAGS='-O0 -ggdb'
                fi &&
                make
-       ) && {
-               UNICODE_DIR=. && export UNICODE_DIR &&
-               cat <<-EOF
-               static const struct interval zero_width[] = {
-                       $(uniset/uniset --32 cat:Me,Mn,Cf \
-                         + U+1160..U+11FF - U+00AD | grep -v plane)
-               };
-               static const struct interval double_width[] = {
-                       $(uniset/uniset --32 eaw:F,W)
-               };
-               EOF
-       } >$UNICODEWIDTH_H
+       ) &&
+       UNICODE_DIR=. && export UNICODE_DIR &&
+       cat >$UNICODEWIDTH_H <<-EOF
+       static const struct interval zero_width[] = {
+               $(uniset/uniset --32 cat:Me,Mn,Cf + U+1160..U+11FF - U+00AD |
+                 grep -v plane)
+       };
+       static const struct interval double_width[] = {
+               $(uniset/uniset --32 eaw:F,W)
+       };
+       EOF
 )