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 e1ff717 commit c5b7bf0Copy full SHA for c5b7bf0
tools/PrepareAutorestModule.ps1
@@ -49,7 +49,7 @@ if ($ModuleSet.Contains($ALL_MODULE))
49
$Null = $ModuleSet.Remove($ALL_MODULE)
50
$CIConfig = Get-Content "$PSScriptRoot\..\.ci-config.json" | ConvertFrom-Json
51
$SelectedModuleList = (Get-ChildItem "$PSScriptRoot\..\src\").Name | Where-Object { $CIConfig.selectModuleList -contains $_ }
52
- $Null = $ModuleSet.Add($SelectedModuleList)
+ $SelectedModuleList | ForEach-Object { $Null = $ModuleSet.Add($_) }
53
$ModuleList = $ModuleSet | Where-Object { $SKIP_MODULES -notcontains $_ }
54
}
55
else
0 commit comments