summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authoradamdottv <[email protected]>2025-07-08 14:59:03 -0500
committeradamdottv <[email protected]>2025-07-08 14:59:03 -0500
commit6efe8cc8dfa1ca0bfee0f18bc491fb8029709c3b (patch)
tree9449d3d8695b62ac30e258eb66aecaab1635ebd2
parentdaa5fc916a988d4d038d1a89aa2076010bed1fab (diff)
downloadopencode-6efe8cc8dfa1ca0bfee0f18bc491fb8029709c3b.tar.gz
opencode-6efe8cc8dfa1ca0bfee0f18bc491fb8029709c3b.zip
fix: env has to be string
-rw-r--r--packages/opencode/src/cli/cmd/tui.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/src/cli/cmd/tui.ts b/packages/opencode/src/cli/cmd/tui.ts
index c9b9d55b4..1e8d2bbcf 100644
--- a/packages/opencode/src/cli/cmd/tui.ts
+++ b/packages/opencode/src/cli/cmd/tui.ts
@@ -84,7 +84,7 @@ export const TuiCommand = cmd({
stdin: "inherit",
env: {
...process.env,
- CGO_ENABLED: 0,
+ CGO_ENABLED: "0",
OPENCODE_SERVER: server.url.toString(),
OPENCODE_APP_INFO: JSON.stringify(app),
},