mirror of
				https://github.com/JuanCanham/HackMyResume.git
				synced 2025-10-30 20:57:26 +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:
		| @@ -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 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user