Adjust dir parameter default value.

This commit is contained in:
chrislusf
2015-05-25 23:53:45 -07:00
parent c86ae76e02
commit 7272af8ec4
4 changed files with 8 additions and 8 deletions

View File

@@ -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{