Skip to content

Commit

Permalink
ci(e2e): improved error message for workspace creation
Browse files Browse the repository at this point in the history
  • Loading branch information
zorrodg committed Nov 21, 2024
1 parent 5b178cb commit e7ec612
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ Let's create a new one by answering the questions below.
);
process.exit(0);
} catch (err) {
console.error(err);
console.error(chalk.red("[ERROR]:"), err?.toString());
console.log(chalk.gray("[DEBUG]:"), (err as Error));
process.exit(1);
}
}
Expand Down

0 comments on commit e7ec612

Please sign in to comment.