diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-03-20 06:33:45 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-03-20 06:34:13 -0700 |
| commit | b2c1c209a548da5b64cee9ea4639b68ed0a4fc8c (patch) | |
| tree | 85a73138987e9986b9040becc5cd17ba2c800d37 | |
| parent | 0a51df02cb27fb51efc7245fae1d9aad25ffcc1e (diff) | |
| download | seaweedfs-b2c1c209a548da5b64cee9ea4639b68ed0a4fc8c.tar.xz seaweedfs-b2c1c209a548da5b64cee9ea4639b68ed0a4fc8c.zip | |
refactor
| -rw-r--r-- | weed/shell/shell_liner.go | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/weed/shell/shell_liner.go b/weed/shell/shell_liner.go index 00adb1abc..d79f67032 100644 --- a/weed/shell/shell_liner.go +++ b/weed/shell/shell_liner.go @@ -19,6 +19,10 @@ var ( func RunShell(options ShellOptions) { + sort.Slice(Commands, func(i, j int) bool { + return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0 + }) + line = liner.NewLiner() defer line.Close() @@ -96,9 +100,6 @@ func printGenericHelp() { ` fmt.Print(msg) - sort.Slice(Commands, func(i, j int) bool { - return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0 - }) for _, c := range Commands { helpTexts := strings.SplitN(c.Help(), "\n", 2) fmt.Printf(" %-30s\t# %s \n", c.Name(), helpTexts[0]) @@ -114,10 +115,6 @@ func printHelp(cmds []string) { } else { cmd := strings.ToLower(args[0]) - sort.Slice(Commands, func(i, j int) bool { - return strings.Compare(Commands[i].Name(), Commands[j].Name()) < 0 - }) - for _, c := range Commands { if c.Name() == cmd { fmt.Printf(" %s\t# %s\n", c.Name(), c.Help()) |
