From 31c98995cc5452b6f14cd0d479782ae152f104ac Mon Sep 17 00:00:00 2001 From: OrJDev Date: Tue, 24 Sep 2024 19:13:08 +0300 Subject: [PATCH] redeploy --- src/index.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/index.ts b/src/index.ts index 3958836..bd83a9f 100644 --- a/src/index.ts +++ b/src/index.ts @@ -20,10 +20,11 @@ async function main() { project.finished(ctx); } -main() -.catch((e) => { +main().catch((e) => { console.log( - `\n ${chalk.blue("Something went wrong:")} ${chalk.red(formatError(e))}\n` + `\n ${chalk.blue("Something went wrong:")} ${chalk.red(formatError(e))}\n`, ); process.exit(1); }); + +//