Skip to content

Commit 0b48936

Browse files
committed
Fixed recursive folder creation
References #26
1 parent 977172b commit 0b48936

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Adapters/XmlFeatureAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function write(string $path, Feature $feature): void
8080

8181
$directory = dirname($path);
8282
if ($this->filesystem->isDirectory($directory) === false) {
83-
$this->filesystem->makeDirectory($directory);
83+
$this->filesystem->makeDirectory($directory, 0755, true);
8484
}
8585

8686
$this->filesystem->put($path, $output);

0 commit comments

Comments
 (0)