Skip to content

Commit

Permalink
Merge pull request csscomb#516 from drugan/cli-help-add-trailing-line
Browse files Browse the repository at this point in the history
Add empty new line in the end of cli help text
  • Loading branch information
obenjiro authored May 29, 2017
2 parents a7971f2 + 97b1e55 commit e09f4e8
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 e09f4e8

Please sign in to comment.