aboutsummaryrefslogtreecommitdiff
path: root/weed/shell/command_fs_pwd.go
diff options
context:
space:
mode:
Diffstat (limited to 'weed/shell/command_fs_pwd.go')
-rw-r--r--weed/shell/command_fs_pwd.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/weed/shell/command_fs_pwd.go b/weed/shell/command_fs_pwd.go
index d7d9819c8..ef6c000ba 100644
--- a/weed/shell/command_fs_pwd.go
+++ b/weed/shell/command_fs_pwd.go
@@ -20,6 +20,10 @@ func (c *commandFsPwd) Help() string {
return `print out current directory`
}
+func (c *commandFsPwd) IsResourceHeavy() bool {
+ return false
+}
+
func (c *commandFsPwd) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) {
fmt.Fprintf(writer, "%s\n", commandEnv.option.Directory)