(installDir: string)
| 407 | * - On Windows, it is in the installation root. |
| 408 | */ |
| 409 | export function getBinaryDirectory(installDir: string) { |
| 410 | return IS_WINDOWS ? installDir : path.join(installDir, 'bin'); |
| 411 | } |
| 412 | |
| 413 | /** |
| 414 | * Extract next page URL from a HTTP response "link" header. Such headers are used in GitHub APIs. |
no outgoing calls
no test coverage detected