[go: nahoru, domu]

Skip to content

Commit

Permalink
CmdPull: allow -a as equivalent to -all
Browse files Browse the repository at this point in the history
  • Loading branch information
marcodelapierre committed Jun 25, 2024
1 parent 6d6d7ae commit 69416fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -1074,7 +1074,7 @@ The `pull` command downloads a pipeline from a Git-hosting platform into the glo

**Options**

`-all`
`-a, -all`
: Update all downloaded projects.

`-d, -deep`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class CmdPull extends CmdBase implements HubOptions {
@Parameter(description = 'project name or repository url to pull', arity = 1)
List<String> args

@Parameter(names='-all', description = 'Update all downloaded projects', arity = 0)
@Parameter(names=['-a','-all'], description = 'Update all downloaded projects', arity = 0)
boolean all

@Parameter(names=['-r','-revision'], description = 'Revision of the project to pull (either a git branch, tag or commit SHA number)')
Expand Down

0 comments on commit 69416fc

Please sign in to comment.