Skip to content

Commit ad2ba20

Browse files
committed
fix(cli): add trailing newline to --help output
1 parent ca354f8 commit ad2ba20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

packages/opencode/src/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,10 +61,10 @@ function show(out: string) {
6161
const text = out.trimStart()
6262
if (!text.startsWith("opencode ")) {
6363
process.stderr.write(UI.logo() + EOL + EOL)
64-
process.stderr.write(text)
64+
process.stderr.write(text + EOL)
6565
return
6666
}
67-
process.stderr.write(out)
67+
process.stderr.write(out + EOL)
6868
}
6969

7070
const cli = yargs(args)

0 commit comments

Comments
 (0)