aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/shell_liner.go
diff options
context:
space:
mode:
authorchrislu <chris.lu@gmail.com>2023-09-18 16:06:41 -0700
committerchrislu <chris.lu@gmail.com>2023-09-18 16:06:41 -0700
commit2e5aa06026750c99ea283181974d2ccfe5eb0468 (patch)
tree7360ecafeb9f8c81e46244b5da9b07e2b74f3fff /weed/shell/shell_liner.go
parent4d414f54a224142f3f4d934f4af3b5dceb6fec6b (diff)
parenta04bd4d26fb355fff6447dd8e508fa54f3c6c180 (diff)
downloadseaweedfs-2e5aa06026750c99ea283181974d2ccfe5eb0468.tar.xz
seaweedfs-2e5aa06026750c99ea283181974d2ccfe5eb0468.zip
Merge branch 'master' of https://github.com/seaweedfs/seaweedfs
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()