Skip to content

Commit f6e4e04

Browse files
authored
Exclude the help files in sub-module (#23552)
* Exclude the help files in sub-module * Exclude the help files in sub-module * Exclude the help files in sub-module
1 parent 6aa464c commit f6e4e04

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/NewHelpIndex.ps1

Lines changed: 1 addition & 1 deletion
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\*"}
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"))}
7777

7878

7979
# Map the name of the cmdlet to the location of the help file

0 commit comments

Comments
 (0)