Commit 05dd4af1 authored by tom's avatar tom

Favicon generator: pass correct exit code if favicons are not generated

parent c30fffc2
......@@ -61,7 +61,8 @@ async function generateFavicons() {
console.log('Favicons generated successfully!');
} catch (faviconError) {
console.warn('Error generating favicons:', faviconError);
console.error('Error generating favicons:', faviconError);
process.exit(1);
}
} catch (error) {
console.error('Error in favicon generation process:', error);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment