Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixup! fs: fix busy loop in recursive rm for windows
  • Loading branch information
RaisinTen committed May 18, 2021
commit 27e573a2a5d7b8762bd90b321d0d1222f9fd83a1
2 changes: 1 addition & 1 deletion test/parallel/test-recursive-rm-busy-loop-windows.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function makeDirectoryWritable(dir) {
if (common.isWindows) {
execSync(`icacls ${dir} /remove:d "everyone"`);
} else {
fs.chmodSync(dirname, 0o777);
fs.chmodSync(dir, 0o777);
}
}

Expand Down