Skip to content

Commit 725bbf7

Browse files
authored
Fix filemode of output directory
Closes #111
1 parent 25ee562 commit 725bbf7

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)