Skip to content

Commit

Permalink
fix: fixed parallel flag impl in update-remote sources command
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Sep 30, 2022
1 parent fb174d5 commit ef3a993
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion core/src/commands/update-remote/sources.ts
Expand Up @@ -46,7 +46,7 @@ export class UpdateRemoteSourcesCommand extends Command<Args, Opts> {
name = "sources"
help = "Update remote sources."
arguments = updateRemoteSourcesArguments
opts = updateRemoteSourcesOptions
options = updateRemoteSourcesOptions

outputsSchema = () =>
joi.object().keys({
Expand Down
7 changes: 6 additions & 1 deletion docs/reference/commands.md
Expand Up @@ -3799,14 +3799,19 @@ Examples:

#### Usage

garden update-remote sources [sources]
garden update-remote sources [sources] [options]

#### Arguments

| Argument | Required | Description |
| -------- | -------- | ----------- |
| `sources` | No | The name(s) of the remote source(s) to update. Use comma as a separator to specify multiple sources.

#### Options

| Argument | Alias | Type | Description |
| -------- | ----- | ---- | ----------- |
| `--parallel` | | boolean | Allow git updates to happen in parallel. This will automatically reject any Git prompt, such as username / password

#### Outputs

Expand Down

0 comments on commit ef3a993

Please sign in to comment.