Skip to content

Commit

Permalink
#208 Changed up/down group and run to require their positional
Browse files Browse the repository at this point in the history
  • Loading branch information
czprz committed May 18, 2023
1 parent 42b417a commit c059ed1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions bin/execution/executor/executor-yargs-generator.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export default new class {
}
})
.command({
command: 'up-group [name]',
command: 'up-group <name>',
desc: 'Run group of actions',
builder: (yargs) => {
yargs
Expand Down Expand Up @@ -87,7 +87,7 @@ export default new class {
}
})
.command({
command: 'run [name]',
command: 'run <name>',
desc: 'Run action continuously',
builder: (yargs) => {
yargs
Expand Down Expand Up @@ -159,7 +159,7 @@ export default new class {
}
})
.command({
command: 'down-group [name]',
command: 'down-group <name>',
desc: 'Take down one or more group of actions',
builder: (yargs) => {
yargs
Expand Down

0 comments on commit c059ed1

Please sign in to comment.