Dax Raad 4 недель назад
Родитель
Сommit
129fe1e350
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      packages/opencode/script/build.ts

+ 1 - 1
packages/opencode/script/build.ts

@@ -200,7 +200,7 @@ for (const item of targets) {
   })
   })
 
 
   // Smoke test: only run if binary is for current platform
   // 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`
     const binaryPath = `dist/${name}/bin/opencode`
     console.log(`Running smoke test: ${binaryPath} --version`)
     console.log(`Running smoke test: ${binaryPath} --version`)
     try {
     try {