Skip to content

Commit 6dc77dd

Browse files
committed
fix: use removeSync to make sure temp dir is deleted
1 parent c27eab5 commit 6dc77dd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ts/lib/commands/precompile.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default command({
6161

6262
fs.mkdirsSync(path.dirname(manifestPath));
6363
fs.writeFileSync(manifestPath, JSON.stringify(createdFiles.reverse()));
64-
fs.remove(outDir);
64+
fs.removeSync(outDir);
6565
},
6666

6767
_loadConfig(outDir: string) {

0 commit comments

Comments
 (0)