Skip to content

Commit

Permalink
Clearer help text for apps with multiple extensions
Browse files Browse the repository at this point in the history
Relates to #522
  • Loading branch information
purplecabbage authored Apr 12, 2022
1 parent 7a32a8f commit 97cfb00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/app/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class Run extends BaseCommand {
const runConfigs = this.getAppExtConfigs(flags)
const entries = Object.entries(runConfigs)
if (entries.length > 1) {
this.error('You can only run one implementation at the time, please filter with the \'-e\' flag.')
this.error('Your app implements multiple extensions. You can only run one at the time, please select which extension to run with the \'-e\' flag.')
}
const name = entries[0][0]
const config = entries[0][1]
Expand Down

0 comments on commit 97cfb00

Please sign in to comment.