Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/29658
Change subject: util/scripts/maintainers.go: drop special case for "THE REST" ......................................................................
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 --- M util/scripts/maintainers.go 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/58/29658/1
diff --git a/util/scripts/maintainers.go b/util/scripts/maintainers.go index e0055e1..76306c8 100644 --- a/util/scripts/maintainers.go +++ b/util/scripts/maintainers.go @@ -149,7 +149,7 @@
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 @@
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)