deletion of output folder on exit from watch

This commit is contained in:
Kentai Radiquum 2025-01-23 06:32:06 +05:00
parent 240396b506
commit c6386bf11c
Signed by: Radiquum
GPG key ID: 858E8EE696525EED

View file

@ -67,6 +67,7 @@ function onExit() {
log("INFO", `Deleted "index.html" file`); log("INFO", `Deleted "index.html" file`);
if (fs.existsSync(OutPath) && OutPath != ParPath) { if (fs.existsSync(OutPath) && OutPath != ParPath) {
fs.rmdirSync(`${OutPath}`, { recursive: true });
log("INFO", `Deleted output folder`); log("INFO", `Deleted output folder`);
} }