devtools: check prefix for libraries patches
The convention in DPDK is to directly use library names as prefix, without a lib/. Signed-off-by: David Marchand <david.marchand@redhat.com>
This commit is contained in:
parent
779279afa5
commit
807274d53a
@ -89,6 +89,12 @@ bad=$(for commit in $commits ; do
|
||||
done | sed 's,^,\t,')
|
||||
[ -z "$bad" ] || { printf "Wrong headline prefix:\n$bad\n" && failure=true;}
|
||||
|
||||
# check headline prefix for libraries
|
||||
bad=$(echo "$headlines" | grep --color=always \
|
||||
-e '^lib/' \
|
||||
| sed 's,^,\t,')
|
||||
[ -z "$bad" ] || { printf "Wrong headline prefix:\n$bad\n" && failure=true;}
|
||||
|
||||
# check headline label for common typos
|
||||
bad=$(echo "$headlines" | grep --color=always \
|
||||
-e '^example[:/]' \
|
||||
|
Loading…
Reference in New Issue
Block a user