diff options
author | Thomas Bruederli <thomas@roundcube.net> | 2012-05-17 19:04:48 +0200 |
---|---|---|
committer | Thomas Bruederli <thomas@roundcube.net> | 2012-05-17 19:04:48 +0200 |
commit | cc9f35a4b727c943cfc073d7d550993e28425b38 (patch) | |
tree | 151cf8cb240d09e12dc43fa2b7f989a9daca8cac /bin | |
parent | 9603477e958e231c14e57380a1861454da17c2a0 (diff) |
Set the right permissions on new localization folders
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/importgettext.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/importgettext.sh b/bin/importgettext.sh index d29a318bd..aab61013b 100755 --- a/bin/importgettext.sh +++ b/bin/importgettext.sh @@ -71,7 +71,7 @@ EOF; $output .= "\n"; $dir = dirname($outfn); - @mkdir($dir, 664, true); + @mkdir($dir, 0755, true); if (file_put_contents($outfn, $output)) echo "-> $outfn\n"; } |