Version bump

This commit is contained in:
Ryan McGrath 2012-11-16 04:43:20 -05:00
parent 080761cb80
commit 75af1f122b
2 changed files with 2 additions and 2 deletions

View file

@ -193,7 +193,7 @@ exports.copyDirSyncRecursive = function(sourceDir, newDirLocation, opts) {
var currFile = fs.lstatSync(sourceDir + "/" + files[i]);
var fCopyFile = function(srcFile, destFile) {
if (typeof opts !== 'undefined' && opts.preserveFiles && fs.existsSync(destFile)) return;
if(typeof opts !== 'undefined' && opts.preserveFiles && fs.existsSync(destFile)) return;
var contents = fs.readFileSync(srcFile);
fs.writeFileSync(destFile, contents);