Skip to content

Commit

Permalink
Removed hard coded mod 755 for the locales mkdir call.
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagoalves committed May 15, 2013
1 parent 865325e commit 56a0800
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion i18n.js
Original file line number Diff line number Diff line change
Expand Up @@ -369,7 +369,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 56a0800

Please sign in to comment.