Skip to content

Commit

Permalink
exit anyway when process is done
Browse files Browse the repository at this point in the history
  • Loading branch information
Aslemammad committed Aug 1, 2024
1 parent 708813e commit 1e09ac0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ const main = defineCommand({
},
});

runMain(main)
runMain(main).then(() => process.exit(0)).catch(() => process.exit(1));

// TODO: we'll add support for yarn if users hit issues with npm
async function resolveTarball(pm: "npm" | "pnpm", p: string) {
Expand Down

0 comments on commit 1e09ac0

Please sign in to comment.