We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ed4f10 commit c5b5795Copy full SHA for c5b5795
packages/opencode/src/cli/cmd/export.ts
@@ -66,7 +66,8 @@ export const ExportCommand = cmd({
66
})),
67
}
68
69
- console.log(JSON.stringify(exportData, null, 2))
+ process.stdout.write(JSON.stringify(exportData, null, 2))
70
+ process.stdout.write("\n")
71
} catch (error) {
72
UI.error(`Session not found: ${sessionID!}`)
73
process.exit(1)
0 commit comments