From 97b1e550aba4c56b71bf947e5c329f71d2eaa4ed Mon Sep 17 00:00:00 2001 From: drugan Date: Sat, 13 May 2017 12:23:42 +0300 Subject: [PATCH] Add empty new line in the end of cli help text --- src/cli.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.js b/src/cli.js index 6d6fc3fc..7e9df98d 100644 --- a/src/cli.js +++ b/src/cli.js @@ -88,7 +88,7 @@ function displayHelp() { ' -t, --tty-mode', ' Run the tool in TTY mode using external app (e.g. IDE).' ]; - process.stdout.write(help.join('\n')); + process.stdout.write(help.join('\n') + '\n'); } function detectConfig() {