fix: 755 -> 0755 in perm

This commit is contained in:
2026-02-09 19:47:44 +00:00
parent 861412f5a1
commit 2c74a2d2ba
+1 -1
View File
@@ -40,7 +40,7 @@ func saveToCache(tzMap TimezoneMap) error {
path := getCachePath()
dir := filepath.Dir(path)
if err := os.MkdirAll(dir, 755); err != nil { // creates if not exists
if err := os.MkdirAll(dir, 0755); err != nil { // creates if not exists
return fmt.Errorf("failed to create cache dir")
}