Use long opts strings for clarity

This commit is contained in:
Kevin Sawicki
2013-12-02 11:26:51 -08:00
parent a0b200565c
commit 8316da3338

View File

@@ -92,11 +92,11 @@ parseCommandLine = ->
options.alias('w', 'wait').boolean('w').describe('w', 'Wait for window to be closed before returning.')
args = options.argv
if args.h
if args.help
process.stdout.write(options.help())
process.exit(0)
if args.v
if args.version
process.stdout.write("#{version}\n")
process.exit(0)