build: fix string compare for SortFunc (#29595)

This commit is contained in:
Aaron Chen 2024-04-21 17:14:13 +08:00 committed by GitHub
parent 98f504f69f
commit 28ccb2bbf8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -291,8 +291,8 @@ func writeAuthors(files []string) {
}
}
// Write sorted list of authors back to the file.
slices.SortFunc(list, func(a, b string) bool {
return strings.ToLower(a) < strings.ToLower(b)
slices.SortFunc(list, func(a, b string) int {
return strings.Compare(strings.ToLower(a), strings.ToLower(b))
})
content := new(bytes.Buffer)
content.WriteString(authorsFileHeader)