diff options
| author | Chris Lu <chris.lu@gmail.com> | 2021-07-23 18:44:53 -0700 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2021-07-23 18:44:53 -0700 |
| commit | 4cc2165061bef27c403dc7f0a8f7148e63317588 (patch) | |
| tree | 4ad4120a8193e59861ca347d8c2fd9ecadf5bd49 /weed/command/command.go | |
| parent | 10fc478557558084d27d7497064dd158c28c6913 (diff) | |
| download | seaweedfs-4cc2165061bef27c403dc7f0a8f7148e63317588.tar.xz seaweedfs-4cc2165061bef27c403dc7f0a8f7148e63317588.zip | |
weed -h subcommand list is not sorted, makes discovery difficult
fix https://github.com/chrislusf/seaweedfs/issues/2214
Diffstat (limited to 'weed/command/command.go')
| -rw-r--r-- | weed/command/command.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/weed/command/command.go b/weed/command/command.go index 18e53ad8c..0bac56442 100644 --- a/weed/command/command.go +++ b/weed/command/command.go @@ -8,15 +8,15 @@ import ( ) var Commands = []*Command{ - cmdBenchmark, cmdBackup, + cmdBenchmark, cmdCompact, - cmdCopy, cmdDownload, cmdExport, cmdFiler, cmdFilerBackup, cmdFilerCat, + cmdFilerCopy, cmdFilerMetaBackup, cmdFilerMetaTail, cmdFilerReplicate, |
