Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix(cli): Allow space between option and value
The help message made it seem that the syntax for specifying an option with a value is like: `--verbosity quiet` `--verbosity q` `-o quiet` `-o q` But the only supported syntax was actually: `--verbosity=quiet` `--verbosity=q` `-o=quiet` `-o=q` (Or a colon instead of an equals sign). With this commit, both of the above syntaxes work.
- Loading branch information