aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/shell_liner.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-09-25 09:35:16 -0700
committerchrislu <chris.lu@gmail.com>2023-09-25 09:35:16 -0700
commit645ae8c57bc449cbb298e90d1ad19f7d2153aea0 (patch)
tree08458e352ea27e8e673a3670269ec84f04512d77 /weed/shell/shell_liner.go
parent3d07895518b2b6e816518be0a2355c1f0a98ff15 (diff)
downloadseaweedfs-645ae8c57bc449cbb298e90d1ad19f7d2153aea0.tar.xz
seaweedfs-645ae8c57bc449cbb298e90d1ad19f7d2153aea0.zip
Revert "Revert "Merge branch 'master' of https://github.com/seaweedfs/seaweedfs""
This reverts commit 8cb42c39
Diffstat (limited to 'weed/shell/shell_liner.go')
-rw-r--r--weed/shell/shell_liner.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/shell/shell_liner.go b/weed/shell/shell_liner.go
index f8f4002fa..3e55cc88e 100644
--- a/weed/shell/shell_liner.go
+++ b/weed/shell/shell_liner.go
@@ -26,8 +26,8 @@ var (
)
func RunShell(options ShellOptions) {
- slices.SortFunc(Commands, func(a, b command) bool {
- return strings.Compare(a.Name(), b.Name()) < 0
+ slices.SortFunc(Commands, func(a, b command) int {
+ return strings.Compare(a.Name(), b.Name())
})
line = liner.NewLiner()
defer line.Close()