Skip to content

Commit

Permalink
fix: remove Please report this issue from error messsage
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak committed Jul 4, 2024
1 parent 05cbffe commit d3ce962
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions packages/cli/src/commands/init/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -347,10 +347,7 @@ async function createFromTemplate({
if (e instanceof CLIError) {
logger.error(e.message);
} else if (e instanceof Error) {
const unknownErrorMessage = 'Please report this issue';
logger.error(
`An unexpected error occurred: ${e.message}. ${unknownErrorMessage}`,
);
logger.error(`An unexpected error occurred: ${e.message}.`);
logger.debug(e as any);
}
didInstallPods = false;
Expand Down

0 comments on commit d3ce962

Please sign in to comment.