chore: add newline to end of command line help text (#361)

Without this, when you run `nexe --help` in a terminal, your shell prompt will be on the same line as `option can be used more than once`.
This commit is contained in:
David Lechner
2017-08-13 16:20:23 -05:00
committed by calebboyd
parent 563aa97a89
commit aeefcbeba3
+1 -1
View File
@@ -131,7 +131,7 @@ nexe --help CLI OPTIONS
--silent -- disable logging
--verbose -- set logging to verbose
-* variable key name * option can be used more than once`.trim()
-* variable key name * option can be used more than once`.trim() + '\n'
function flattenFilter(...args: any[]): string[] {
return ([] as string[]).concat(...args).filter(x => x)