Skip to content

Commit dfabc1a

Browse files
committed
fix(rebase): fix error caused by rebase
1 parent 912c16a commit dfabc1a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/opencode/ui/formatter.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -410,7 +410,7 @@ function M._format_bash_tool(output, input, metadata)
410410

411411
if metadata.output or metadata.command or input.command then
412412
local command = input.command or metadata.command or ''
413-
M._format_code(vim.split('> ' .. command .. '\n\n' .. (metadata.output or ''), '\n'), 'bash')
413+
M._format_code(output, vim.split('> ' .. command .. '\n\n' .. (metadata.output or ''), '\n'), 'bash')
414414
end
415415
end
416416

0 commit comments

Comments
 (0)