(url: string)
| 285 | } |
| 286 | |
| 287 | function openBrowser(url: string): void { |
| 288 | try { |
| 289 | const cmd = process.platform === 'darwin' ? 'open' : process.platform === 'win32' ? 'start' : 'xdg-open'; |
| 290 | tryRunArgs([cmd, url]); |
| 291 | } catch { |
| 292 | // Silent fail — user can open manually |
| 293 | } |
| 294 | } |
no test coverage detected
searching dependent graphs…