There was an error while loading. Please reload this page.
1 parent cb16b27 commit 8854697Copy full SHA for 8854697
1 file changed
build_lualib.ts
@@ -18,6 +18,8 @@ compile([
18
...glob.sync("./src/lualib/*.ts"),
19
]);
20
21
-fs.unlinkSync(bundlePath);
+if (fs.existsSync(bundlePath)) {
22
+ fs.unlinkSync(bundlePath);
23
+}
24
25
concat(glob.sync("./dist/lualib/*.lua"), bundlePath);
0 commit comments