All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] scripts/get_maintainer.pl: obey ignore list
@ 2021-06-11  3:37 Trevor Woerner
  2021-06-11 14:23 ` Tom Rini
  0 siblings, 1 reply; 4+ messages in thread
From: Trevor Woerner @ 2021-06-11  3:37 UTC (permalink / raw)
  To: U-Boot Mailing List

If the user creates a .get_maintainer.ignore file, make sure it is consulted
and obeyed for *all* emails discovered by the script.

Signed-off-by: Trevor Woerner <twoerner@gmail.com>
---
 scripts/get_maintainer.pl | 1 +
 1 file changed, 1 insertion(+)

diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index e3b41616c9..8c0fb8656e 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -2435,6 +2435,7 @@ sub merge_email {
 
     for (@_) {
 	my ($address, $role) = @$_;
+	next if (ignore_email_address($address));
 	if (!$saw{$address}) {
 	    if ($output_roles) {
 		push(@lines, "$address ($role)");
-- 
2.30.0.rc0


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-11 21:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-11  3:37 [PATCH] scripts/get_maintainer.pl: obey ignore list Trevor Woerner
2021-06-11 14:23 ` Tom Rini
2021-06-11 14:56   ` Trevor Woerner
2021-06-11 21:06     ` Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.