Don't print the stack trace when errors happen

This commit is contained in:
Jeroen Engels 2021-10-01 23:07:20 +02:00
parent 1bb4a13ce0
commit 09027a3834

View File

@ -37,6 +37,6 @@ run(
},
console.log.bind(console),
).catch((e) => {
console.error(e);
console.error(e.toString());
process.exit(1);
});