0
0
Fork 0
mirror of https://gitea.plemya-x.ru/Plemya-x/ALR.git synced 2025-01-10 09:16:45 +00:00

fix: use MkdirAll instead Mkdir to ignore existing dirs

This commit is contained in:
Максим Слипенко 2024-11-17 21:11:54 +03:00
parent 1273aeae39
commit 41eec2fc98

View file

@ -222,7 +222,7 @@ func extractFile(r io.Reader, format archiver.Format, name string, opts Options)
} }
if f.IsDir() { if f.IsDir() {
err = os.Mkdir(path, 0o755) err = os.MkdirAll(path, 0o755)
if err != nil { if err != nil {
return err return err
} }
@ -279,4 +279,4 @@ func getFilename(res *http.Response) (name string) {
} else { } else {
return path.Base(res.Request.URL.Path) return path.Base(res.Request.URL.Path)
} }
} }