aboutsummaryrefslogtreecommitdiff
path: root/go/weed/mount.go
diff options
context:
space:
mode:
authorchrislusf <chris.lu@gmail.com>2015-05-25 23:53:45 -0700
committerchrislusf <chris.lu@gmail.com>2015-05-25 23:53:45 -0700
commit7272af8ec45426151593fcd7d1a4d5a8092d5de6 (patch)
tree41ae83f0f713de8aa3a2c3e415fb03933f9d6de8 /go/weed/mount.go
parentc86ae76e0222ebe40b752119ac60661385627297 (diff)
downloadseaweedfs-7272af8ec45426151593fcd7d1a4d5a8092d5de6.tar.xz
seaweedfs-7272af8ec45426151593fcd7d1a4d5a8092d5de6.zip
Adjust dir parameter default value.
Diffstat (limited to 'go/weed/mount.go')
-rw-r--r--go/weed/mount.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/go/weed/mount.go b/go/weed/mount.go
index de7a3b8c3..e6f46c392 100644
--- a/go/weed/mount.go
+++ b/go/weed/mount.go
@@ -13,7 +13,7 @@ func init() {
cmdMount.Run = runMount // break init cycle
cmdMount.IsDebug = cmdMount.Flag.Bool("debug", false, "verbose debug information")
mountOptions.filer = cmdMount.Flag.String("filer", "localhost:8888", "weed filer location")
- mountOptions.dir = cmdMount.Flag.String("dir", "", "mount weed filer to this directory")
+ mountOptions.dir = cmdMount.Flag.String("dir", ".", "mount weed filer to this directory")
}
var cmdMount = &Command{