cc7a723d77
Signed-off-by: Elizaveta Chichindaeva <elizaveta@nspcc.ru>
10 lines
295 B
Go
10 lines
295 B
Go
package util
|
|
|
|
import "os"
|
|
|
|
// MkdirAllX calls os.MkdirAll with the passed permissions
|
|
// but with +x for a user and a group. This makes the created
|
|
// dir openable regardless of the passed permissions.
|
|
func MkdirAllX(path string, perm os.FileMode) error {
|
|
return os.MkdirAll(path, perm|0110)
|
|
}
|