Skip to content

Commit

Permalink
mkDir recursive=true
Browse files Browse the repository at this point in the history
  • Loading branch information
acoates-ms committed Mar 12, 2024
1 parent 527bb6a commit baceaf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion new-release-tools.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ function generateDiffs(rnwVersion, apptype) {
runCmd("git pull", wtDiffsDir);

if (!existsSync(path.resolve(wtDiffsDir, `diffs/${apptype}`))) {
mkdirSync(path.resolve(wtDiffsDir, `diffs/${apptype}`));
mkdirSync(path.resolve(wtDiffsDir, `diffs/${apptype}`), {recursive:true});
}

for (let existingRelease of getReleases(apptype === 'mac')) {
Expand Down

0 comments on commit baceaf3

Please sign in to comment.