Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
johlju committed Feb 3, 2024
1 parent cd08095 commit 721db48
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Resolve-Dependency.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -955,6 +955,14 @@ try

Write-Progress -Activity 'PSResourceGet:' -PercentComplete $progressPercent -CurrentOperation 'Restoring Build Dependencies'

Write-Verbose -Message ((Get-Command ForEach-Object).Parameters.Keys | Out-String) -Verbose
Write-Verbose -Message (get-Help ForEach-Object | Out-String) -Verbose

if (-not $PSResourceGetThrottleLimit)
{
$PSResourceGetThrottleLimit = 1
}

$modulesToSave | ForEach-Object -ThrottleLimit $PSResourceGetThrottleLimit -Parallel {
$currentModule = $_

Expand Down

0 comments on commit 721db48

Please sign in to comment.