Fix created directories not obeying umask

This commit is contained in:
Nick Craig-Wood 2015-07-29 10:21:12 +01:00
parent 9d9a17547a
commit f55359b3ac
1 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ func (f *FsLocal) Put(in io.Reader, remote string, modTime time.Time, size int64
// Mkdir creates the directory if it doesn't exist
func (f *FsLocal) Mkdir() error {
return os.MkdirAll(f.root, 0770)
return os.MkdirAll(f.root, 0777)
}
// Rmdir removes the directory
@ -429,7 +429,7 @@ func (o *FsObjectLocal) Open() (in io.ReadCloser, err error) {
// Update the object from in with modTime and size
func (o *FsObjectLocal) Update(in io.Reader, modTime time.Time, size int64) error {
dir := path.Dir(o.path)
err := os.MkdirAll(dir, 0770)
err := os.MkdirAll(dir, 0777)
if err != nil {
return err
}