Skip to content

Commit

Permalink
#982: ensure --execute is grouped in help-dialogue
Browse files Browse the repository at this point in the history
  • Loading branch information
JoernBerkefeld committed Jun 29, 2023
1 parent bfac576 commit fc53c6d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ yargs
},
})
.command({
command: 'deploy [BU] [TYPE] [KEY] [--fromRetrieve] [--refresh] [--execute]',
command: 'deploy [BU] [TYPE] [KEY] [--fromRetrieve] [--refresh]',
aliases: ['d'],
desc: 'deploys local metadata to a business unit',
builder: (yargs) => {
Expand All @@ -58,7 +58,7 @@ yargs
describe: 'metadata key that shall be exclusively uploaded',
})
.group(
['changeKeyField', 'changeKeyValue', 'fromRetrieve', 'refresh'],
['changeKeyField', 'changeKeyValue', 'fromRetrieve', 'refresh', 'execute'],
'Options for deploy:'
)
.option('changeKeyField', {
Expand Down

0 comments on commit fc53c6d

Please sign in to comment.