mirror of
https://github.com/ful1e5/apple_cursor.git
synced 2025-05-23 19:47:05 -04:00
🚀 Program exits
This commit is contained in:
parent
18716b180d
commit
e41ae86ad7
1 changed files with 2 additions and 1 deletions
|
@ -19,7 +19,7 @@ const main = async () => {
|
||||||
});
|
});
|
||||||
|
|
||||||
// Paths
|
// Paths
|
||||||
if (fs.existsSync(svgsDir)) {
|
if (!fs.existsSync(svgsDir)) {
|
||||||
console.log("Source .svg files not found");
|
console.log("Source .svg files not found");
|
||||||
}
|
}
|
||||||
if (!fs.existsSync(bitmapsDir)) {
|
if (!fs.existsSync(bitmapsDir)) {
|
||||||
|
@ -99,6 +99,7 @@ const main = async () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
console.log(`\nBitmaps stored at ${bitmapsDir}\n\n🎉 Render Done.`);
|
console.log(`\nBitmaps stored at ${bitmapsDir}\n\n🎉 Render Done.`);
|
||||||
|
process.exit(0);
|
||||||
} catch (error) {
|
} catch (error) {
|
||||||
console.error(error);
|
console.error(error);
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue