We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 950b5be commit ccce140Copy full SHA for ccce140
1 file changed
ModuleFast.ps1
@@ -462,6 +462,10 @@ function Install-ModuleFastHelper {
462
Module = $module
463
DownloadPath = Join-Path $ModuleCache "$($module.Name).$($module.Version).nupkg"
464
}
465
+ Write-Verbose "$module`: Downloading from $($module.DownloadLink)"
466
+ if (-not $module.DownloadLink) {
467
+ throw "$module`: No Download Link found. This is a bug"
468
+ }
469
$fetchTask = $httpClient.GetStreamAsync($module.DownloadLink, $CancellationToken)
470
$taskMap.Add($fetchTask, $context)
471
$fetchTask
0 commit comments