1.10.2
Test / testing (1.19.13, ubuntu-latest) (push) Successful in 1m32s Details
Test / testing (>=1.20, ubuntu-latest) (push) Successful in 2m17s Details

This commit is contained in:
Akvicor 2024-02-19 16:49:50 +08:00
parent b2e2332d98
commit 9b9a31e4a2
1 changed files with 1 additions and 1 deletions

View File

@ -132,7 +132,7 @@ func MkdirP(p string, perm ...os.FileMode) error {
if len(perm) > 0 {
return os.MkdirAll(p, perm[0])
} else {
return os.MkdirAll(p, 0755)
return os.MkdirAll(p, 0750)
}
}
return nil