(downloadUrl: string)
| 440 | * Related issue: https://github.com/actions/setup-python/issues/819 |
| 441 | */ |
| 442 | export function getDownloadFileName(downloadUrl: string): string | undefined { |
| 443 | const tempDir = process.env.RUNNER_TEMP || '.'; |
| 444 | return IS_WINDOWS |
| 445 | ? path.join(tempDir, path.basename(downloadUrl)) |
| 446 | : undefined; |
| 447 | } |
no outgoing calls
no test coverage detected