Pablo Barrera Yaksic 7 mesiacov pred
rodič
commit
828a047744
1 zmenil súbory, kde vykonal 7 pridanie a 3 odobranie
  1. 7 3
      src/index.ts

+ 7 - 3
src/index.ts

@@ -29,6 +29,10 @@ async function main (): Promise<void> {
   await theclinic(null, context, () => {});
 }
 
-main().catch((err) => {
-  console.error(err)
-});
+main()
+  .then(() => {
+    process.exit(0);
+  })
+  .catch((err) => {
+    console.error(err)
+  });