mirror of
https://github.com/JuanCanham/HackMyResume.git
synced 2024-11-05 09:56:22 +00:00
Support lowercase -v version flag.
Commander.js built-in version handling uses an uppercase shortcut (-V) for the version, so the common -v (lowercase) isn't recognized and errors out.
This commit is contained in:
parent
376e720f4b
commit
815ee3dc7e
@ -45,7 +45,8 @@ Definition of the `main` function.
|
||||
.option('-s --silent', 'Run in silent mode')
|
||||
.option('--no-color', 'Disable colors')
|
||||
.option('--color', 'Enable colors')
|
||||
.option('-d --debug', 'Enable diagnostics', false);
|
||||
.option('-d --debug', 'Enable diagnostics', false)
|
||||
.option('-v --version', 'Show the version');
|
||||
//.usage('COMMAND <sources> [TO <targets>]');
|
||||
|
||||
// Create the NEW command
|
||||
|
Loading…
Reference in New Issue
Block a user