diff options
Diffstat (limited to 'weed/shell/command_fs_du.go')
| -rw-r--r-- | weed/shell/command_fs_du.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/shell/command_fs_du.go b/weed/shell/command_fs_du.go index 456f6bab6..b94869268 100644 --- a/weed/shell/command_fs_du.go +++ b/weed/shell/command_fs_du.go @@ -36,6 +36,10 @@ func (c *commandFsDu) HasTag(CommandTag) bool { func (c *commandFsDu) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { + if handleHelpRequest(c, args, writer) { + return nil + } + path, err := commandEnv.parseUrl(findInputDirectory(args)) if err != nil { return err |
