()
| 154 | * Get shell type to determine appropriate path setup |
| 155 | */ |
| 156 | export function getShellType(): string { |
| 157 | const shellPath = process.env.SHELL || '' |
| 158 | if (shellPath.includes('zsh')) return 'zsh' |
| 159 | if (shellPath.includes('bash')) return 'bash' |
| 160 | if (shellPath.includes('fish')) return 'fish' |
| 161 | return 'unknown' |
| 162 | } |
| 163 |
no outgoing calls
no test coverage detected