()
| 570 | } |
| 571 | |
| 572 | function getInstalledBinaryStatus() { |
| 573 | try { |
| 574 | const stats = fs.statSync(CONFIG.binaryPath) |
| 575 | return stats.isFile() ? `yes (${formatBytes(stats.size)})` : 'no' |
| 576 | } catch { |
| 577 | return 'no' |
| 578 | } |
| 579 | } |
| 580 | |
| 581 | function printSpawnFailure(err) { |
| 582 | resetTerminal() |
no test coverage detected