Skip to content

Commit

Permalink
Merge branch 'main' into chore/UpdateTestsAndDependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
quintush committed Dec 30, 2024
2 parents 55865a6 + 8ca94b9 commit d3c6277
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/unittest/snapshot/factory.go
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ func ensureDir(path string) error {
info, err := os.Stat(path)
if err != nil {
if os.IsNotExist(err) {
return os.Mkdir(path, 0755)
return os.MkdirAll(path, 0755)
}
return err
}
Expand Down

0 comments on commit d3c6277

Please sign in to comment.