Skip to content

Commit

Permalink
Fix /tmp backing store.
Browse files Browse the repository at this point in the history
  • Loading branch information
hanwen committed Jun 12, 2012
1 parent 48d02b7 commit 6f86906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Expand Up @@ -15,7 +15,7 @@ import (
func main() { func main() {
fsdebug := flag.Bool("fs-debug", false, "switch on FS debugging") fsdebug := flag.Bool("fs-debug", false, "switch on FS debugging")
mtpDebug := flag.Int("mtp-debug", 0, "switch on MTP debugging") mtpDebug := flag.Int("mtp-debug", 0, "switch on MTP debugging")
backing := flag.String("backing-dir", "/tmp", "backing store for locally cached files.") backing := flag.String("backing-dir", "", "backing store for locally cached files. Default: use a temporary directory.")
flag.Parse() flag.Parse()


if len(flag.Args()) != 1 { if len(flag.Args()) != 1 {
Expand Down

0 comments on commit 6f86906

Please sign in to comment.