Skip to content

Commit 636d8f9

Browse files
authored
Update NewHelpIndex.ps1 (#23705)
1 parent 7f6c77c commit 636d8f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/NewHelpIndex.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ $RMpsd1s += Get-ChildItem -Path $resourceManagerPath -Depth 1 | Where-Object {
7373
}
7474

7575
.($PSScriptRoot + "\PreloadToolDll.ps1")
76-
$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src" -Recurse -Directory | where { $_.Name -eq "help" -and (-not [Tools.Common.Utilities.ModuleFilter]::IsAzureStackModule($_.FullName)) -and $_.FullName -notlike "*\bin\*" -and (-not $_.Parent.BaseName.EndsWith(".Autorest"))}
76+
$HelpFolders += Get-ChildItem -Path "$PSScriptRoot/../src" -Recurse -Directory | where { $_.Name -eq "help" -and (-not [Tools.Common.Utilities.ModuleFilter]::IsAzureStackModule($_.FullName)) -and $_.FullName -notlike "*\bin\*" -and (-not $_.Parent.BaseName.EndsWith(".Autorest", "CurrentCultureIgnoreCase"))}
7777

7878

7979
# Map the name of the cmdlet to the location of the help file
@@ -137,4 +137,4 @@ $RMpsd1s | ForEach-Object {
137137
$output.Add("modules", $outputModules)
138138
$json = ConvertTo-Json $output -Depth 4
139139
Write-Host "Index file successfully created: $OutputFile." -ForegroundColor Green;
140-
$json | Out-File $OutputFile
140+
$json | Out-File $OutputFile

0 commit comments

Comments
 (0)