Skip to content

Commit

Permalink
Fix smoke test
Browse files Browse the repository at this point in the history
  • Loading branch information
jakebailey committed Mar 6, 2023
1 parent f1f2820 commit 8d71f47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/produceLKG.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const dest = path.join(root, "lib");

async function produceLKG() {
console.log(`Building LKG from ${source} to ${dest}`);
await (fs.rm ?? fs.rmdir)(dest, { recursive: true });
await (fs.rm || fs.rmdir)(dest, { recursive: true, force: true });
await fs.mkdirp(dest);
await copyLibFiles();
await copyLocalizedDiagnostics();
Expand Down

0 comments on commit 8d71f47

Please sign in to comment.