Fix unstable emoji sort (#22346)

Without the second sort every generate run produces a different result.
This commit is contained in:
KN4CK3R 2023-01-05 12:58:51 +01:00 committed by GitHub
parent 906d8cc5dc
commit f74293f9c2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 1514 additions and 1510 deletions

View file

@ -189,6 +189,10 @@ func generate() ([]byte, error) {
}
}
sort.Slice(data, func(i, j int) bool {
return data[i].Aliases[0] < data[j].Aliases[0]
})
// add header
str := replacer.Replace(fmt.Sprintf(hdr, gemojiURL, data))

File diff suppressed because it is too large Load diff