We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9adfb72 commit dc978a4Copy full SHA for dc978a4
Makefile.ts
@@ -373,4 +373,10 @@ export async function publishRelease() {
373
374
// >>> ENTRYPOINT
375
// -----------------------------------------------------------------------------
376
-module.exports[config._[0]].apply(null);
+module.exports[config._[0]]
377
+ .apply(null)
378
+ .then(() => process.exit(0))
379
+ .catch((e) => {
380
+ logger.error(e);
381
+ process.exit(1);
382
+ });
0 commit comments