Skip to content

Commit cb1c09d

Browse files
authored
Fix the typo in HelpIndex.ps1 (#24269)
1 parent 19b118e commit cb1c09d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tools/Docs/HelpIndex.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ $output.Add("version", "$Version")
6262
$outputModules = @{}
6363

6464
#Create mappings file
65-
& "ToolsRootPath/CreateMappings.ps1" -OutputFile $OutputFile/../groupMapping.json -WarningFile $OutputFile/../groupMappingWarnings.json
65+
& "$ToolsRootPath/CreateMappings.ps1" -OutputFile $OutputFile/../groupMapping.json -WarningFile $OutputFile/../groupMappingWarnings.json
6666
$labelMapping = Get-Content -Raw $OutputFile/../groupMapping.json | ConvertFrom-Json
6767

6868
$HelpFolders = @()
6969

70-
$ProjectPaths = @( "ToolsRootPath/../src")
70+
$ProjectPaths = @( "$ToolsRootPath/../src")
7171
$RMpsd1s = $ProjectPaths | ForEach-Object {
7272
Get-ChildItem -Path $_ -Filter "*.psd1" -Recurse | Where-Object {
7373
$_.FullName -inotlike "*autorest*" -and `

0 commit comments

Comments
 (0)