diff options
-rw-r--r-- | util/scripts/maintainers.go | 4 |
1 files 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) |