Version bump
This commit is contained in:
parent
080761cb80
commit
75af1f122b
2 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "wrench",
|
||||
"description": "Recursive filesystem (and other) operations that Node *should* have.",
|
||||
"version": "1.4.2",
|
||||
"version": "1.4.3",
|
||||
"author": "Ryan McGrath <ryan@venodesigns.net>",
|
||||
|
||||
"repository": {
|
||||
|
|
|
|||
Reference in a new issue