(url: string, detail?: string)
| 28 | } |
| 29 | |
| 30 | function printManualInstructions(url: string, detail?: string): void { |
| 31 | if (detail) { |
| 32 | console.error(c.warn(`Could not open browser automatically (${detail}).`)); |
| 33 | } else { |
| 34 | console.error(c.warn("Browser auto-open is disabled.")); |
| 35 | } |
| 36 | console.error(`Open this URL manually to continue:\n ${c.accent(url)}`); |
| 37 | } |
no test coverage detected