(sessionName: string)
| 71 | } |
| 72 | |
| 73 | export function tmuxStop(sessionName: string): void { |
| 74 | try { |
| 75 | execFileSync( |
| 76 | 'bash', |
| 77 | [`${SCRIPTS_DIR}/tmux-stop.sh`, sessionName], |
| 78 | EXEC_OPTIONS, |
| 79 | ) |
| 80 | } catch { |
| 81 | // tmux-stop.sh is idempotent; ignore errors if session already gone |
| 82 | } |
| 83 | } |