Skip to content

Commit

Permalink
pkg: storage/local mkdir with 755 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
labkode authored Feb 7, 2019
1 parent 57771b1 commit a55d17f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/storage/local/local.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ func New(m map[string]interface{}) (storage.FS, error) {
}

// create root if it does not exist
os.MkdirAll(c.Root, 0700)
os.MkdirAll(c.Root, 0755)

return &localFS{root: c.Root}, nil
}
Expand Down

0 comments on commit a55d17f

Please sign in to comment.