Comparing version 2.6.0 to 2.6.1
{ | ||
"name": "rimraf", | ||
"version": "2.6.0", | ||
"version": "2.6.1", | ||
"main": "rimraf.js", | ||
@@ -5,0 +5,0 @@ "description": "A deep deletion module for node (like `rm -rf`)", |
@@ -353,6 +353,9 @@ module.exports = rimraf | ||
do { | ||
var threw = true | ||
try { | ||
return options.rmdirSync(p, options) | ||
var ret = options.rmdirSync(p, options) | ||
threw = false | ||
return ret | ||
} finally { | ||
if (++i < retries) | ||
if (++i < retries && threw) | ||
continue | ||
@@ -359,0 +362,0 @@ } |
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
15065
360