diff options
| author | Dax Raad <[email protected]> | 2026-03-20 17:00:05 -0400 |
|---|---|---|
| committer | Dax Raad <[email protected]> | 2026-03-20 17:00:05 -0400 |
| commit | 129fe1e3507f014d5328122d8af875efa89cbbbc (patch) | |
| tree | afedcf7b9efaed8add7f0683e8408c590e8659f8 | |
| parent | 214a6c6cf13038ae2a6e5a89a3d59fbf23e5be5a (diff) | |
| download | opencode-129fe1e3507f014d5328122d8af875efa89cbbbc.tar.gz opencode-129fe1e3507f014d5328122d8af875efa89cbbbc.zip | |
ci
| -rwxr-xr-x | packages/opencode/script/build.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/opencode/script/build.ts b/packages/opencode/script/build.ts index c330de453..a97cf3249 100755 --- a/packages/opencode/script/build.ts +++ b/packages/opencode/script/build.ts @@ -200,7 +200,7 @@ for (const item of targets) { }) // Smoke test: only run if binary is for current platform - if (item.os === process.platform && item.arch === process.arch) { + if (item.os === process.platform && item.arch === process.arch && !item.abi) { const binaryPath = `dist/${name}/bin/opencode` console.log(`Running smoke test: ${binaryPath} --version`) try { |
