Skip to content

Commit

Permalink
Fixed directory settings for Local adapter.
Browse files Browse the repository at this point in the history
  • Loading branch information
frankdejonge committed Feb 13, 2014
1 parent a6bf4ab commit dedd25e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Adapter/Local.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public function __construct($root)
protected function ensureRootDirectory($root)
{
if ( ! is_dir($root)) {
mkdir($root, 0777, true);
mkdir($root, 0755, true);
}

return realpath($root);
Expand Down

0 comments on commit dedd25e

Please sign in to comment.