Skip to content

Commit

Permalink
Merge pull request #59 from muzzley/master
Browse files Browse the repository at this point in the history
Remove the hard coded permissions of the `locales` directory
  • Loading branch information
mashpie committed Feb 6, 2016
2 parents d1b1a70 + 56a0800 commit aa50d71
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i18n.js
Expand Up @@ -712,7 +712,7 @@ function write(locale) {
stats = fs.lstatSync(directory);
} catch (e) {
logDebug('creating locales dir in: ' + directory);
fs.mkdirSync(directory, parseInt('755', 8));
fs.mkdirSync(directory);
}

// first time init has an empty file
Expand Down

0 comments on commit aa50d71

Please sign in to comment.