Skip to content

Commit

Permalink
fix an error when a command does not implement any handler to include…
Browse files Browse the repository at this point in the history
… "wait" (#8631)
  • Loading branch information
davidfirst authored Mar 6, 2024
1 parent 0f7727e commit 1c802af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scopes/harmony/cli/command-runner.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export class CommandRunner {
return handleErrorAndExit(err, this.commandName);
}

throw new Error(`command "${this.commandName}" doesn't implement "render" nor "report" methods`);
throw new Error(`command "${this.commandName}" doesn't implement "render" nor "report" nor "wait" methods`);
}

private bootstrapCommand() {
Expand Down

0 comments on commit 1c802af

Please sign in to comment.