Skip to content

Commit

Permalink
Stupid opts/options.
Browse files Browse the repository at this point in the history
  • Loading branch information
mde committed Mar 12, 2012
1 parent 9de8636 commit d23a6ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/file.js
Expand Up @@ -41,7 +41,7 @@ var fileUtils = new (function () {
targetDir = path.join(to, filename);
// We don't care if the target dir already exists
try {
fs.mkdirSync(targetDir, opts.mode || 0755);
fs.mkdirSync(targetDir, options.mode || 0755);
}
catch(e) {
if (e.code != 'EEXIST') {
Expand Down

0 comments on commit d23a6ff

Please sign in to comment.