aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_mkdir.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/shell/command_fs_mkdir.go')
-rw-r--r--weed/shell/command_fs_mkdir.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/shell/command_fs_mkdir.go b/weed/shell/command_fs_mkdir.go
index 30cd26a20..9c33aa81c 100644
--- a/weed/shell/command_fs_mkdir.go
+++ b/weed/shell/command_fs_mkdir.go
@@ -27,6 +27,10 @@ func (c *commandFsMkdir) Help() string {
`
}
+func (c *commandFsMkdir) HasTag(CommandTag) bool {
+ return false
+}
+
func (c *commandFsMkdir) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
path, err := commandEnv.parseUrl(findInputDirectory(args))