From 9651058c42e69e00e47ccbcdbbc6b4e5ab7b4a63 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 16 Nov 2018 12:41:19 +0100 Subject: [PATCH] util/scripts/maintainers.go: drop special case for "THE REST" It's not useful anymore. Change-Id: Iba7f10dc87301911ff5f73c182b41c268fba310a Signed-off-by: Patrick Georgi Reviewed-on: https://review.coreboot.org/c/29658 Reviewed-by: Philipp Deppenwiese Reviewed-by: Angel Pons Tested-by: build bot (Jenkins) --- util/scripts/maintainers.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/util/scripts/maintainers.go b/util/scripts/maintainers.go index e0055e1cf0..76306c843e 100644 --- a/util/scripts/maintainers.go +++ b/util/scripts/maintainers.go @@ -149,7 +149,7 @@ func find_maintainer(fname string) { for _, subsystem := range subsystems { matched := match_file(fname, subsystem) - if matched && subsystem.name != "THE REST" { + if matched { success = true fmt.Println(fname, "is in subsystem", subsystem.name) @@ -166,7 +166,7 @@ func find_unmaintained(fname string) { for _, subsystem := range subsystems { matched := match_file(fname, subsystem) - if matched && subsystem.name != "THE REST" { + if matched { success = true fmt.Println(fname, "is in subsystem", subsystem.name)