Merge pull request #23 from retorquere:patch-1

Report build errors as error status
This commit is contained in:
windingwind 2023-01-23 23:29:00 +08:00 committed by GitHub
commit 29b57965e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -179,4 +179,7 @@ async function main() {
);
}
main();
main().catch(err => {
console.log(err);
process.exit(1);
});