From 2aaf6ca27d9580d02f527c71bd5ccf04fca084ef Mon Sep 17 00:00:00 2001 From: Dax Raad Date: Mon, 2 Feb 2026 12:54:07 -0500 Subject: [PATCH] Trim text output in run command --- packages/opencode/src/cli/cmd/run.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/opencode/src/cli/cmd/run.ts b/packages/opencode/src/cli/cmd/run.ts index f6ff952f3e..a1765ee5b9 100644 --- a/packages/opencode/src/cli/cmd/run.ts +++ b/packages/opencode/src/cli/cmd/run.ts @@ -410,7 +410,7 @@ export const RunCommand = cmd({ continue } UI.empty() - UI.println(part.text) + UI.println(part.text.trim()) UI.empty() }