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

@@ -22,7 +22,7 @@ var cmdFix = &Command{
}
var (
fixVolumePath = cmdFix.Flag.String("dir", "/tmp", "data directory to store files")
fixVolumePath = cmdFix.Flag.String("dir", ".", "data directory to store files")
fixVolumeCollection = cmdFix.Flag.String("collection", "", "the volume collection name")
fixVolumeId = cmdFix.Flag.Int("volumeId", -1, "a volume id. The volume should already exist in the dir. The volume index file should not exist.")
)