devtools: skip capitalization check for commit prefixes
authorBruce Richardson <bruce.richardson@intel.com>
Fri, 13 Jan 2017 13:02:17 +0000 (13:02 +0000)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Fri, 13 Jan 2017 16:03:43 +0000 (17:03 +0100)
The prefix in the commit title must be a valid component name and is
checked in separate checks. For capitalization, just check the part after
the colon. This is already done for most capitalization checks, just make
the remainder consistent with this.

Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
devtools/check-git-log.sh

index f79f0a2..f6a35d2 100755 (executable)
@@ -113,10 +113,10 @@ bad=$(echo "$headlines" | grep --color=always \
 
 # check headline uppercase (Rx/Tx, VF, L2, MAC, Linux, ARM...)
 bad=$(echo "$headlines" | grep -E --color=always \
-       -e '\<(rx|tx|RX|TX)\>' \
-       -e '\<[pv]f\>' \
-       -e '\<[hsf]w\>' \
-       -e '\<l[234]\>' \
+       -e ':.*\<(rx|tx|RX|TX)\>' \
+       -e ':.*\<[pv]f\>' \
+       -e ':.*\<[hsf]w\>' \
+       -e ':.*\<l[234]\>' \
        -e ':.*\<api\>' \
        -e ':.*\<arm\>' \
        -e ':.*\<armv7\>' \