(version: string)
| 476 | } |
| 477 | |
| 478 | async function versionIsAvailable(version: string): Promise<boolean> { |
| 479 | const { installPath } = await getVersionPaths(version) |
| 480 | return isPossibleNcodeBinary(installPath) |
| 481 | } |
| 482 | |
| 483 | async function updateLatest( |
| 484 | channelOrVersion: string, |
no test coverage detected