This commit is contained in:
Shreyas Goenka 2023-06-29 19:10:50 +02:00
parent e6000db8c5
commit 5b41948a8a
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
1 changed files with 1 additions and 1 deletions

View File

@ -22,7 +22,7 @@ func Extract(src string, dst string) error {
targetPath := filepath.Join(dst, path)
if d.IsDir() {
return os.MkdirAll(targetPath, os.ModePerm)
return os.MkdirAll(targetPath, 0755)
}
targetFile, err := os.Create(targetPath)