Skip to content

Commit

Permalink
Add empty new line in the end of cli help text
Browse files Browse the repository at this point in the history
  • Loading branch information
drugan committed May 13, 2017
1 parent 16ad316 commit 97b1e55
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down

0 comments on commit 97b1e55

Please sign in to comment.