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 71c21f4 commit c50f986Copy full SHA for c50f986
‎scripts/helpers/Build-PSModuleDocumentation.ps1‎
@@ -66,13 +66,17 @@
66
Force = $true
67
}
68
$null = New-MarkdownCommandHelp @params
69
- Write-Host ' - ✓' -ForegroundColor Green
+ Write-Host " - $($PSStyle.Foreground.Green)✓$($PSStyle.Reset)"
70
} catch {
71
- Write-Host ' - ✗' -ForegroundColor Red
+ Write-Host " - $($PSStyle.Foreground.Red)✗$($PSStyle.Reset)"
72
$_
73
74
75
76
+ Write-Host '::group::Build docs - Generated files'
77
+ Get-ChildItem -Path $docsOutputFolder -Recurse | Select-Object -ExpandProperty FullName
78
+ Write-Host '::endgroup::'
79
+
80
Get-ChildItem -Path $DocsOutputFolder -Recurse -Force -Include '*.md' | ForEach-Object {
81
$fileName = $_.Name
82
Write-Host "::group:: - [$fileName]"
0 commit comments