()
| 583 | } |
| 584 | |
| 585 | function getInstalledBinaryStatus() { |
| 586 | try { |
| 587 | const stats = fs.statSync(CONFIG.binaryPath) |
| 588 | return stats.isFile() ? `yes (${formatBytes(stats.size)})` : 'no' |
| 589 | } catch { |
| 590 | return 'no' |
| 591 | } |
| 592 | } |
| 593 | |
| 594 | function printSpawnFailure(err) { |
| 595 | resetTerminal() |
no test coverage detected