Skip to content

Commit

Permalink
Add stdout.end() to fix CLI output
Browse files Browse the repository at this point in the history
  • Loading branch information
maastrich committed Nov 12, 2023
1 parent 7f172c6 commit ed6fb9d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 0 deletions.
Binary file modified bun.lockb
Binary file not shown.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ cli
const result = list(arg, commands);
const stdout = Bun.stdout.writer();
stdout.write(result.join("\n"));
stdout.end();
});

for (const name in commands) {
Expand Down

0 comments on commit ed6fb9d

Please sign in to comment.