From 21c5ac21614f96fbaf9fd6f19a76597c41ae335e Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 17 Jun 2025 12:27:07 +0200 Subject: [PATCH] chore: remove bad comment in authors script Closes #10185 --- script/authors.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/script/authors.go b/script/authors.go index febe22606..23865cc1f 100644 --- a/script/authors.go +++ b/script/authors.go @@ -171,8 +171,6 @@ var excludeCommits = stringSetFromStrings([]string{ "4dfb9d7c83ed172f12ae19408517961f4a49beeb", }) -// allAuthors returns the set of authors in the git commit log, except those -// in excluded commits. func addAuthors(authors *authorSet) { // All existing source-tracked files bs, err := exec.Command("git", "ls-tree", "-r", "HEAD", "--name-only").CombinedOutput()