diff options
Diffstat (limited to 'weed/shell/command_fs_cd.go')
| -rw-r--r-- | weed/shell/command_fs_cd.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/shell/command_fs_cd.go b/weed/shell/command_fs_cd.go index 698865142..ef6cf6458 100644 --- a/weed/shell/command_fs_cd.go +++ b/weed/shell/command_fs_cd.go @@ -34,6 +34,10 @@ func (c *commandFsCd) HasTag(CommandTag) bool { func (c *commandFsCd) 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 |
