You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an application which were running smooth unless I added a new command line argument which requires other. When I added the argument the application started to crush on cli.yml parsing.
Here is the part my cli.yml. Please notice skip_details argument here.
name: applicationversion: 0.3.0args:
- verbose:
short: vmultiple: falsehelp: Sets the level of verbositysubcommands:
- ftp:
about: Perform operation using FTP Clientversion: 0.2.0args:
- list:
short: llong: listhelp: List files in the given path
- skip_details:
long: skip-detailshelp: Skip executing additional FTP commands in --list mode.requires: list
One can now use a list or single value for certain Arg YAML declarations
such as possible_values, etc.
Prior to this commit, if only a single value was desired one would have
to use the format:
```yaml
possible_values:
- value
```
But now once can use
```yaml
possible_values: value
```
Closes#614Closes#613
feat(YAML): allows using lists or single values with arg declarations
One can now use a list or single value for certain Arg YAML declarations
such as possible_values, etc.
Prior to this commit, if only a single value was desired one would have
to use the format:
```yaml
possible_values:
- value
```
But now once can use
```yaml
possible_values: value
```
Closes#614Closes#613
Hello,
I have an application which were running smooth unless I added a new command line argument which
requires
other. When I added the argument the application started to crush on cli.yml parsing.Here is the part my cli.yml. Please notice
skip_details
argument here.And here is the backtrace of my application run.
The text was updated successfully, but these errors were encountered: