以0755创建目录以避免无法保存cache

This commit is contained in:
fumiama 2021-06-03 22:49:36 +08:00
parent be9f4293fd
commit 6b604d8b9f

View File

@ -39,7 +39,7 @@ func CreatePath(path string) {
//
}
if !PathExists(path) {
err := os.MkdirAll(path, 0644)
err := os.MkdirAll(path, 0755)
if err != nil {
panic(err)
}