Comparing version 1.5.5 to 1.5.6
@@ -235,3 +235,3 @@ /* wrench.js | ||
if(fs.statSync(newDirLocation).isDirectory()) { | ||
if(typeof opts !== 'undefined' && opts.forceDelete) { | ||
if(opts.forceDelete) { | ||
exports.rmdirSyncRecursive(newDirLocation); | ||
@@ -238,0 +238,0 @@ } else { |
{ | ||
"name": "wrench", | ||
"description": "Recursive filesystem (and other) operations that Node *should* have.", | ||
"version": "1.5.5", | ||
"version": "1.5.6", | ||
"author": "Ryan McGrath <ryan@venodesigns.net>", | ||
@@ -6,0 +6,0 @@ |
@@ -20,5 +20,5 @@ var testCase = require('nodeunit').testCase; | ||
fs.chmodSync(f1Path, '777'); | ||
fs.chmodSync(f2Path, '777'); | ||
fs.chmodSync(f3Path, '777'); | ||
fs.chmodSync(f1Path, '444'); | ||
fs.chmodSync(f2Path, '444'); | ||
fs.chmodSync(f3Path, '444'); | ||
@@ -55,5 +55,5 @@ test.equals(fs.existsSync(dir), true, 'Dir should exist - mkdirSyncRecursive not working?'); | ||
fs.chmodSync(f1Path, '777'); | ||
fs.chmodSync(f2Path, '777'); | ||
fs.chmodSync(f3Path, '777'); | ||
fs.chmodSync(f1Path, '444'); | ||
fs.chmodSync(f2Path, '444'); | ||
fs.chmodSync(f3Path, '444'); | ||
@@ -60,0 +60,0 @@ test.equals(fs.existsSync(dir), true, 'Dir should exist - mkdirSyncRecursive not working?'); |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
36116