We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfa2510 commit ee70b56Copy full SHA for ee70b56
‎src/functions/public/Auth/Connect-GitHubApp.ps1‎
@@ -158,7 +158,8 @@
158
Write-Verbose "Found [$($selectedInstallations.Count)] installations for the target."
159
$moduleName = $script:Module.Name
160
$moduleVersion = $script:PSModuleInfo.ModuleVersion
161
- $contextParamList = $selectedInstallations | ForEach-Object -ThrottleLimit $ThrottleLimit -Parallel {
+ $contextParamList = , @()
162
+ $contextParamList += $selectedInstallations | ForEach-Object -ThrottleLimit $ThrottleLimit -Parallel {
163
Import-Module -Name $using:moduleName -RequiredVersion $using:moduleVersion -Force -ErrorAction Stop
164
$installation = $_
165
Write-Verbose "Processing installation [$($installation.Target.Name)] [$($installation.id)]"
0 commit comments