Skip to content

Commit 7ddba70

Browse files
committed
Don't delete README
1 parent fdab4d6 commit 7ddba70

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/produceLKG.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const copyright = fs.readFileSync(path.join(__dirname, "../CopyrightNotice.txt")
1313

1414
async function produceLKG() {
1515
console.log(`Building LKG from ${source} to ${dest}`);
16-
await del(dest);
16+
await del(`${dest.replace(/\\/g, "/")}/**`, { ignore: ["**/README.md"] });
1717
await fs.mkdirp(dest);
1818
await copyLibFiles();
1919
await copyLocalizedDiagnostics();

0 commit comments

Comments
 (0)