From 27e24162f27df87df754d7368298ce9453d8865f Mon Sep 17 00:00:00 2001 From: Chris Lu Date: Sat, 20 Mar 2021 06:37:03 -0700 Subject: [PATCH] minor --- weed/shell/command_fs_mv.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/weed/shell/command_fs_mv.go b/weed/shell/command_fs_mv.go index 6b96072df..2448c8f61 100644 --- a/weed/shell/command_fs_mv.go +++ b/weed/shell/command_fs_mv.go @@ -37,7 +37,7 @@ func (c *commandFsMv) Help() string { func (c *commandFsMv) Do(args []string, commandEnv *CommandEnv, writer io.Writer) (err error) { if len(args) != 2 { - return fmt.Errorf("need to have 2 arguments.") + return fmt.Errorf("need to have 2 arguments") } sourcePath, err := commandEnv.parseUrl(args[0])