We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23eea91 commit 7d97216Copy full SHA for 7d97216
cmd/gocq/main.go
@@ -81,7 +81,7 @@ func Main() {
81
82
mkCacheDir := func(path string, _type string) {
83
if !global.PathExists(path) {
84
- if err := os.MkdirAll(path, 0o644); err != nil {
+ if err := os.MkdirAll(path, 0o755); err != nil {
85
log.Fatalf("创建%s缓存文件夹失败: %v", _type, err)
86
}
87
0 commit comments