Skip to content

Commit

Permalink
fix(help): remove the interactive disablement on help command
Browse files Browse the repository at this point in the history
If the help command is invoked manually from another command, it is
possible that the interactive flag is picked up. The help command will
complain about not allowing interactive mode and not the actual error.
Because help doesn't any flags, it typically won't matter if it is
allowed
  • Loading branch information
esatterwhite committed Aug 20, 2021
1 parent 3413be0 commit 4c0283b
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion lib/commands/help.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ const HELP_REGEX = /help|hlep/
module.exports = new Command({
description: 'Displays information about available commands'
, name: 'help'
, interactive: false
, get usage() {
return [
`${conf.get('name')} help <${colorize('command')}>`
Expand Down

0 comments on commit 4c0283b

Please sign in to comment.