Skip to content

Commit

Permalink
Show a debug message when all tasks are done, to debug hanging CLI pr…
Browse files Browse the repository at this point in the history
…ocess
  • Loading branch information
ghengeveld committed Feb 16, 2024
1 parent 8da01c4 commit 107d711
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions node-src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,6 +203,7 @@ async function runBuild(ctx: Context) {
ctx.log.queue();
}
await new Listr(getTasks(ctx.options), options).run(ctx);
ctx.log.debug('Tasks completed');
} catch (err) {
endActivity(ctx);
if (err.code === 'ECONNREFUSED' || err.name === 'StatusCodeError') {
Expand Down

0 comments on commit 107d711

Please sign in to comment.