build: fix string compare for SortFunc (#29595)
This commit is contained in:
parent
98f504f69f
commit
28ccb2bbf8
@ -291,8 +291,8 @@ func writeAuthors(files []string) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Write sorted list of authors back to the file.
|
// Write sorted list of authors back to the file.
|
||||||
slices.SortFunc(list, func(a, b string) bool {
|
slices.SortFunc(list, func(a, b string) int {
|
||||||
return strings.ToLower(a) < strings.ToLower(b)
|
return strings.Compare(strings.ToLower(a), strings.ToLower(b))
|
||||||
})
|
})
|
||||||
content := new(bytes.Buffer)
|
content := new(bytes.Buffer)
|
||||||
content.WriteString(authorsFileHeader)
|
content.WriteString(authorsFileHeader)
|
||||||
|
Loading…
Reference in New Issue
Block a user