Skip to content
This repository has been archived by the owner on Jun 19, 2019. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
Ryan McGrath committed Nov 16, 2012
1 parent 080761c commit 75af1f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/wrench.js
Expand Up @@ -193,7 +193,7 @@ exports.copyDirSyncRecursive = function(sourceDir, newDirLocation, opts) {
var currFile = fs.lstatSync(sourceDir + "/" + files[i]); var currFile = fs.lstatSync(sourceDir + "/" + files[i]);


var fCopyFile = function(srcFile, destFile) { 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); var contents = fs.readFileSync(srcFile);
fs.writeFileSync(destFile, contents); fs.writeFileSync(destFile, contents);
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{ {
"name": "wrench", "name": "wrench",
"description": "Recursive filesystem (and other) operations that Node *should* have.", "description": "Recursive filesystem (and other) operations that Node *should* have.",
"version": "1.4.2", "version": "1.4.3",
"author": "Ryan McGrath <ryan@venodesigns.net>", "author": "Ryan McGrath <ryan@venodesigns.net>",


"repository": { "repository": {
Expand Down

0 comments on commit 75af1f1

Please sign in to comment.