Skip to content

Commit 0dc4578

Browse files
authored
Merge pull request #112 from ameenross/patch-1
Fix filemode of output directory.
2 parents 1665b82 + 725bbf7 commit 0dc4578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Mariuzzo/LaravelJsLocalization/Generators/LangJsGenerator.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ protected function prepareTarget($target)
151151
$dirname = dirname($target);
152152

153153
if (!$this->file->exists($dirname)) {
154-
$this->file->makeDirectory($dirname, null, true);
154+
$this->file->makeDirectory($dirname, 0755, true);
155155
}
156156
}
157157

0 commit comments

Comments
 (0)