We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f1f2820 commit 8d71f47Copy full SHA for 8d71f47
scripts/produceLKG.mjs
@@ -14,7 +14,7 @@ const dest = path.join(root, "lib");
14
15
async function produceLKG() {
16
console.log(`Building LKG from ${source} to ${dest}`);
17
- await (fs.rm ?? fs.rmdir)(dest, { recursive: true });
+ await (fs.rm || fs.rmdir)(dest, { recursive: true, force: true });
18
await fs.mkdirp(dest);
19
await copyLibFiles();
20
await copyLocalizedDiagnostics();
0 commit comments