Skip to content

Commit

Permalink
fix(core): fix showing help for executors (#13393)
Browse files Browse the repository at this point in the history
(cherry picked from commit 2c13661)
  • Loading branch information
FrozenPandaz committed Nov 28, 2022
1 parent dd5b967 commit 2eb1897
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/nx/src/command-line/nx-commands.ts
Expand Up @@ -699,6 +699,10 @@ function withRunOneOptions(yargs: yargs.Argv) {
.option('project', {
describe: 'Target project',
type: 'string',
})
.option('help', {
describe: 'Show Help',
type: 'boolean',
});

if (executorShouldShowHelp) {
Expand Down

0 comments on commit 2eb1897

Please sign in to comment.