This commit is contained in:
Kirill Zhuravlev 2023-02-20 14:37:37 +01:00 committed by Avelino
parent 257a031f08
commit 0215981b89
No known key found for this signature in database
GPG Key ID: B345B4D52E98180A

View File

@ -118,17 +118,17 @@ func dropCreateDir(dir string) error {
func mkdirAll(path string) error {
_, err := os.Stat(path)
// NOTE: directory is exists
// directory is exists
if err == nil {
return nil
}
// NOTE: unknown error
// unexpected error
if !os.IsNotExist(err) {
return fmt.Errorf("unexpected result of dir stat: %w", err)
}
// NOTE: directory is not exists
// directory is not exists
if err := os.MkdirAll(path, 0755); err != nil {
return fmt.Errorf("midirAll: %w", err)
}