Skip to content

Commit 2f0fb9f

Browse files
authored
Merge pull request #5445 from cormacpayne/netcore-md-fix
Fix bug when validating help for Netcore modules
2 parents 695e529 + afb51f4 commit 2f0fb9f

File tree

3 files changed

+306
-594
lines changed

3 files changed

+306
-594
lines changed

tools/GenerateHelp.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ if ($ValidateMarkdownHelp)
2525
$NewExceptionsPath = "$PSScriptRoot\..\src\Package"
2626
Copy-Item -Path "$PSScriptRoot\HelpGeneration\Exceptions\ValidateHelpIssues.csv" -Destination $SuppressedExceptionsPath
2727
New-Item -Path $NewExceptionsPath -Name ValidateHelpIssues.csv -ItemType File -Force | Out-Null
28-
Add-Content "$NewExceptionsPath\ValidateHelpIssues.csv" "Module,Target,Description"
28+
Add-Content "$NewExceptionsPath\ValidateHelpIssues.csv" "Target,Description"
2929
$HelpFolders | foreach { Validate-MarkdownHelp $_ $SuppressedExceptionsPath $NewExceptionsPath }
3030
$Exceptions = Import-Csv "$NewExceptionsPath\ValidateHelpIssues.csv"
3131
if (($Exceptions | Measure-Object).Count -gt 0)

0 commit comments

Comments
 (0)