summaryrefslogtreecommitdiff
path: root/packages/cli/src
diff options
context:
space:
mode:
authorOlcan <[email protected]>2025-05-21 12:59:23 -0700
committerGitHub <[email protected]>2025-05-21 12:59:23 -0700
commit01dbc61d1cad13901b83f0b3a75827f209119394 (patch)
tree4f2e43f9e23a709b48f82d7f15d8f804c928f1c5 /packages/cli/src
parent01c28df8b2bcdb34d5a4ee5f330bbb8d1df0b334 (diff)
space outputs in shell mode (#469)
Diffstat (limited to 'packages/cli/src')
-rw-r--r--packages/cli/src/ui/hooks/shellCommandProcessor.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/cli/src/ui/hooks/shellCommandProcessor.ts b/packages/cli/src/ui/hooks/shellCommandProcessor.ts
index 0ec627ca..9ad5ef03 100644
--- a/packages/cli/src/ui/hooks/shellCommandProcessor.ts
+++ b/packages/cli/src/ui/hooks/shellCommandProcessor.ts
@@ -139,7 +139,7 @@ export const useShellCommandProcessor = (
addItemToHistory({ type: 'error', text }, userMessageTimestamp);
} else {
addItemToHistory(
- { type: 'info', text: output },
+ { type: 'info', text: output + '\n' },
userMessageTimestamp,
);
}