scripts: fix commit check for empty list
authorThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 8 Jul 2016 17:45:54 +0000 (19:45 +0200)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Sun, 10 Jul 2016 14:34:11 +0000 (16:34 +0200)
When running check-git-log.sh on a clean tree it was complaining
of a wrong empty headline because '^[^:]*$' was matching.
It is fixed by matching at least one character with +.

Signed-off-by: Thomas Monjalon <thomas.monjalon@6wind.com>
scripts/check-git-log.sh

index c7fc0e4..7ea4458 100755 (executable)
@@ -63,7 +63,7 @@ bad=$(echo "$headlines" | grep --color=always \
        -e '\.$' \
        -e '[,;!?&|]' \
        -e ':.*_' \
-       -e '^[^:]*$' \
+       -e '^[^:]\+$' \
        -e ':[^ ]' \
        -e ' :' \
        | sed 's,^,\t,')