upgrade opentui to 0.3.2 (#30748)

This commit is contained in:
Sebastian 2026-06-04 22:05:59 +02:00 committed by GitHub
commit e464999eb9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 28 additions and 22 deletions

View file

@ -192,6 +192,7 @@ for (const item of targets) {
OPENCODE_WORKER_PATH: workerPath,
OPENCODE_CHANNEL: `'${Script.channel}'`,
OPENCODE_LIBC: item.os === "linux" ? `'${item.abi ?? "glibc"}'` : "",
...(item.os === "linux" ? { "process.env.OPENTUI_LIBC": JSON.stringify(item.abi ?? "glibc") } : {}),
},
})
@ -217,6 +218,7 @@ for (const item of targets) {
preferUnplugged: true,
os: [item.os],
cpu: [item.arch],
...(item.abi ? { libc: [item.abi] } : {}),
},
null,
2,