From aeefcbeba3040a7d69c24746bad2d514db41d8bc Mon Sep 17 00:00:00 2001 From: David Lechner Date: Sun, 13 Aug 2017 16:20:23 -0500 Subject: [PATCH] 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`. --- src/options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/options.ts b/src/options.ts index cbbb0ec..6938ad2 100644 --- a/src/options.ts +++ b/src/options.ts @@ -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)