fix: opencode Remove the symlinkBinary function call that replaces the wrapper script (fixes #7911) (#7912)

This commit is contained in:
Chuck Chen
2026-01-13 13:13:45 +08:00
committed by GitHub
parent b4ad5c138e
commit a6fe405253

View File

@@ -106,8 +106,11 @@ async function main() {
return
}
const { binaryPath, binaryName } = findBinary()
symlinkBinary(binaryPath, binaryName)
// On non-Windows platforms, just verify the binary package exists
// Don't replace the wrapper script - it handles binary execution
const { binaryPath } = findBinary()
console.log(`Platform binary verified at: ${binaryPath}`)
console.log("Wrapper script will handle binary execution")
} catch (error) {
console.error("Failed to setup opencode binary:", error.message)
process.exit(1)