Skip to content

Commit

Permalink
Merge pull request #13 from node-migrator-bot/clean
Browse files Browse the repository at this point in the history
Hi! I fixed some code for you!
  • Loading branch information
tj committed Jul 7, 2012
2 parents 3dd7596 + a19f86e commit 460aec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/modular/content/lib/helpers.js
Expand Up @@ -7,7 +7,7 @@ var fs = require('fs'),
*/
var isDirectory = exports.isDirectory = function(dir) {
var stat;
return path.existsSync(dir) && (stat = fs.statSync(dir)) &&
return fs.existsSync(dir) && (stat = fs.statSync(dir)) &&
stat.isDirectory();
}

Expand Down

0 comments on commit 460aec3

Please sign in to comment.