aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2021-05-21 01:38:57 -0700
committerChris Lu <chris.lu@gmail.com>2021-05-21 01:38:57 -0700
commit5d77840cff69f86de5e5dc4539b4ef535b63586d (patch)
treef03f1bbb2e545433bdeba48721ed2fc19d02bf3f
parentdc1309f084bf9f420629bdf5c2cbe88c07400930 (diff)
downloadseaweedfs-5d77840cff69f86de5e5dc4539b4ef535b63586d.tar.xz
seaweedfs-5d77840cff69f86de5e5dc4539b4ef535b63586d.zip
adjust help message
-rw-r--r--weed/command/mount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/weed/command/mount.go b/weed/command/mount.go
index 5811f0b99..aec5fcc3c 100644
--- a/weed/command/mount.go
+++ b/weed/command/mount.go
@@ -37,7 +37,7 @@ var (
func init() {
cmdMount.Run = runMount // break init cycle
- mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "weed filer location")
+ mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "comma-separated weed filer location")
mountOptions.filerMountRootPath = cmdMount.Flag.String("filer.path", "/", "mount this remote path from filer server")
mountOptions.dir = cmdMount.Flag.String("dir", ".", "mount weed filer to this directory")
mountOptions.dirAutoCreate = cmdMount.Flag.Bool("dirAutoCreate", false, "auto create the directory to mount to")