From: Stephen Hemminger Date: Thu, 6 Aug 2020 17:19:47 +0000 (-0700) Subject: devtools: rename variables in maintainers file parsing X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=7ccf23c8f79216c75d10f9d546f3dddd627d0a31;p=dpdk.git devtools: rename variables in maintainers file parsing Change variable names in the shell script. Replace whitelist with include_files and blacklist with exclude_files. Signed-off-by: Stephen Hemminger Acked-by: Luca Boccassi Acked-by: Thomas Monjalon Acked-by: John McNamara --- diff --git a/devtools/check-maintainers.sh b/devtools/check-maintainers.sh index 85a300f0a0..df3f740b6e 100755 --- a/devtools/check-maintainers.sh +++ b/devtools/check-maintainers.sh @@ -42,10 +42,10 @@ parse_fx () # for line in $( (sed '/^-\+$/d' $1 ; echo) | sed 's,^$,§,') ; do if echo "$line" | grep -q '^§$' ; then # empty line delimit end of section - whitelist=$(files $flines) - blacklist=$(files $xlines) - match=$(aminusb "$whitelist" "$blacklist") - if [ -n "$whitelist" ] ; then + include_files=$(files $flines) + exclude_files=$(files $xlines) + match=$(aminusb "$include_files" "$exclude_files") + if [ -n "$include_files" ] ; then printf "# $title " maintainers=$(echo "$maintainers" | sed -r 's,.*<(.*)>.*,\1,') maintainers=$(printf "$maintainers" | sed -e 's,^,<,' -e 's,$,>,')