fix (plg_backend_tmp): incorrect permission when creating folder

This commit is contained in:
Mickael Kerjean 2022-08-31 00:40:23 +10:00
parent fd1f5d0421
commit 75696a8088

View file

@ -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 {