Patrick Georgi has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/29781
Change subject: util/scripts/maintainers.go: file: queries are more stable with quotes ......................................................................
util/scripts/maintainers.go: file: queries are more stable with quotes
The gerrit docs aren't very explicit about it, but file:"^foo$" is more robust than file:^foo$.
Change-Id: I16c7d972d365cd04ca5fbb78012ad4eaad667be6 Signed-off-by: Patrick Georgi pgeorgi@google.com --- M util/scripts/maintainers.go 1 file changed, 1 insertion(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/81/29781/1
diff --git a/util/scripts/maintainers.go b/util/scripts/maintainers.go index 76306c8..31a720c 100644 --- a/util/scripts/maintainers.go +++ b/util/scripts/maintainers.go @@ -278,7 +278,7 @@ } fmt.Println("#", subsystem.name) for _, path := range subsystem.paths { - fmt.Println("[filter "file:" + path_to_regexstr(path) + ""]") + fmt.Println("[filter "file:\"" + path_to_regexstr(path) + "\""]") for _, maint := range subsystem.maintainer { fmt.Println(" reviewer =", extract_maintainer(maint)) }