mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-29 19:56:09 +01:00
fix (plg_backend_tmp): incorrect permission when creating folder
This commit is contained in:
parent
fd1f5d0421
commit
75696a8088
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ func (this TmpStorage) Mkdir(path string) error {
|
|||
if err := this.VerifyPath(path); err != nil {
|
||||
return err
|
||||
}
|
||||
return SafeOsMkdir(path, 0664)
|
||||
return SafeOsMkdir(path, 0755)
|
||||
}
|
||||
|
||||
func (this TmpStorage) Rm(path string) error {
|
||||
|
|
|
|||
Loading…
Reference in a new issue