From eafb75a9584db53eb3ac9721476b4b65f5ea4900 Mon Sep 17 00:00:00 2001 From: William Will <10997562+willwill96@users.noreply.github.com> Date: Wed, 29 Mar 2023 18:48:10 -0600 Subject: [PATCH] fix: do not swallow errors --- src/bin/tools/jar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/tools/jar.ts b/src/bin/tools/jar.ts index ca84ed0a..a87f4a52 100644 --- a/src/bin/tools/jar.ts +++ b/src/bin/tools/jar.ts @@ -90,5 +90,5 @@ if (require.main === module) { groupId: process.env.GROUP_ID ?? "group", version: process.env.VERSION ?? "1.0.0" }); - main().catch(e => console.error(e)); + main(); }