fix: env has to be string

This commit is contained in:
adamdottv 2025-07-08 14:59:03 -05:00
parent daa5fc916a
commit 6efe8cc8df
No known key found for this signature in database
GPG key ID: 9CB48779AF150E75

View file

@ -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),
},