Skip to content

Commit e09f4e8

Browse files
authored
Merge pull request #516 from drugan/cli-help-add-trailing-line
Add empty new line in the end of cli help text
2 parents a7971f2 + 97b1e55 commit e09f4e8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cli.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ function displayHelp() {
8888
' -t, --tty-mode',
8989
' Run the tool in TTY mode using external app (e.g. IDE).'
9090
];
91-
process.stdout.write(help.join('\n'));
91+
process.stdout.write(help.join('\n') + '\n');
9292
}
9393

9494
function detectConfig() {

0 commit comments

Comments
 (0)