1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-09 02:05:59 +01:00

Fix building of galenectl with Go 1.20.

Package slices doesn't exist in 1.20.
This commit is contained in:
Juliusz Chroboczek 2024-10-27 12:46:22 +01:00
parent 19c89386da
commit a327711508

View file

@ -15,7 +15,7 @@ import (
"net/url"
"os"
"path/filepath"
"slices"
"sort"
"strings"
"time"
@ -115,7 +115,9 @@ func main() {
for name := range commands {
names = append(names, name)
}
slices.Sort(names)
sort.Slice(names, func(i, j int) bool {
return names[i] < names[j]
})
for _, name := range names {
fmt.Fprintf(
flag.CommandLine.Output(),