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>
This commit is contained in:
parent
501956750f
commit
9651058c42
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue