()
| 651 | } |
| 652 | |
| 653 | export async function isTmuxAvailable(): Promise<boolean> { |
| 654 | const { code } = await execFileNoThrow('tmux', ['-V']) |
| 655 | return code === 0 |
| 656 | } |
| 657 | |
| 658 | export function getTmuxInstallInstructions(): string { |
| 659 | const platform = getPlatform() |
no test coverage detected