()
| 156 | } |
| 157 | |
| 158 | function verifyBinary() { |
| 159 | const result = childProcess.spawnSync(targetBinary, ["--version"], { |
| 160 | encoding: "utf8", |
| 161 | stdio: "ignore", |
| 162 | windowsHide: true, |
| 163 | }) |
| 164 | return result.status === 0 |
| 165 | } |
| 166 | |
| 167 | function main() { |
| 168 | for (const name of packageNames()) { |