feat(l2s): add error when param not recognized

This commit is contained in:
matt1432 2025-05-27 18:03:34 -04:00
parent 771b7d9526
commit 28285db518

View file

@ -331,6 +331,11 @@ const main = async(): Promise<void> => {
console.log(`Updated ${listKey}.`);
}
else {
console.error('Arguments not recognized.');
exit(1);
}
};
main();