mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-09-22 16:43:35 +08:00
Revert "Merge branch 'master' of https://github.com/seaweedfs/seaweedfs"
This reverts commit2e5aa06026
, reversing changes made to4d414f54a2
.
This commit is contained in:
@@ -26,8 +26,8 @@ var (
|
||||
)
|
||||
|
||||
func RunShell(options ShellOptions) {
|
||||
slices.SortFunc(Commands, func(a, b command) int {
|
||||
return strings.Compare(a.Name(), b.Name())
|
||||
slices.SortFunc(Commands, func(a, b command) bool {
|
||||
return strings.Compare(a.Name(), b.Name()) < 0
|
||||
})
|
||||
line = liner.NewLiner()
|
||||
defer line.Close()
|
||||
|
Reference in New Issue
Block a user