Skip to content

Commit f22e97d

Browse files
author
Frank
committed
sync
1 parent 2dda422 commit f22e97d

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

github/index.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,10 @@ function createOpencode() {
232232
const host = "127.0.0.1"
233233
const port = 4096
234234
const url = `http://${host}:${port}`
235-
const proc = spawn(`opencode`, [`serve`, `--hostname=${host}`, `--port=${port}`])
235+
const proc = spawn(`opencode`, [`serve`, `--hostname=${host}`, `--port=${port}`], {
236+
// TODO
237+
stdio: "inherit",
238+
})
236239
const client = createOpencodeClient({ baseUrl: url })
237240

238241
return {

0 commit comments

Comments
 (0)