Skip to content

Commit d85818b

Browse files
🩹 [Patch]: Enhance output formatting by adding group markers for command processing in Build-PSModuleDocumentation
1 parent 342a1ae commit d85818b

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

‎scripts/helpers/Build-PSModuleDocumentation.ps1‎

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@
5252
# Get all exported commands from the module
5353
$commands = $moduleInfo.ExportedCommands.Values | Where-Object { $_.CommandType -ne 'Alias' }
5454

55-
Write-Host "Found $($commands.Count) commands to process"
55+
Write-Host "::group::Found $($commands.Count) commands to process"
5656

5757
foreach ($command in $commands) {
5858
try {
@@ -75,7 +75,6 @@
7575

7676
Write-Host '::group::Build docs - Generated files'
7777
Get-ChildItem -Path $docsOutputFolder -Recurse | Select-Object -ExpandProperty FullName
78-
Write-Host '::endgroup::'
7978

8079
Get-ChildItem -Path $docsOutputFolder -Recurse -Force -Include '*.md' | ForEach-Object {
8180
$fileName = $_.Name

0 commit comments

Comments
 (0)