Skip to content

Commit

Permalink
chore: run the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
bcoe committed Oct 13, 2020
1 parent ab8731c commit c1f8562
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/internal/fs/rimraf.js
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ function _rmdirSync(path, options, originalErr) {

for (let i = 1; i <= tries; i++) {
try {
return rmdirSync(path, {...options, recursive: false});
return rmdirSync(path, { ...options, recursive: false });
} catch (err) {
// Only sleep if this is not the last try, and the delay is greater
// than zero, and an error was encountered that warrants a retry.
Expand Down

0 comments on commit c1f8562

Please sign in to comment.