aboutsummaryrefslogtreecommitdiff
path: root/util/scripts
diff options
context:
space:
mode:
authorPatrick Georgi <pgeorgi@google.com>2018-11-16 12:41:19 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-11-24 22:12:07 +0000
commit9651058c42e69e00e47ccbcdbbc6b4e5ab7b4a63 (patch)
tree5228a1c33538c5fea8773697debe9134e59681b7 /util/scripts
parent501956750f9b82716963e5201bc163e0847250c0 (diff)
util/scripts/maintainers.go: drop special case for "THE REST"
It's not useful anymore. Change-Id: Iba7f10dc87301911ff5f73c182b41c268fba310a Signed-off-by: Patrick Georgi <pgeorgi@google.com> Reviewed-on: https://review.coreboot.org/c/29658 Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'util/scripts')
-rw-r--r--util/scripts/maintainers.go4
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)