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
chore: fix bug with makeDirectoryWritable
  • Loading branch information
bcoe committed Jan 26, 2020
commit 903be10434c38378ecc1d2e81634d2c30c4a46a1
2 changes: 1 addition & 1 deletion test/parallel/test-fs-mkdir-recursive-eaccess.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function makeDirectoryReadOnly(dir) {

function makeDirectoryWritable(dir) {
if (common.isWindows) {
execSync(`icacls ${dir} /inheritance:e`);
execSync(`icacls ${dir} /grant "everyone":W`);
}
}

Expand Down