Skip to content

Commit 5b70ce5

Browse files
Refactor Build-PSModuleDocumentation.ps1 to improve output formatting; adjust spacing in Write-Host messages for better alignment.
1 parent c4f38a8 commit 5b70ce5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/helpers/Build-PSModuleDocumentation.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,10 +109,10 @@
109109
$file = $_
110110
$relPath = [System.IO.Path]::GetRelativePath($PublicFunctionsFolder.FullName, $file.FullName)
111111
Write-Host " - $relPath"
112-
Write-Host " Path: $file"
112+
Write-Host " Path: $file"
113113

114114
$docsFilePath = ($file.FullName).Replace($PublicFunctionsFolder.FullName, $DocsOutputFolder.FullName)
115-
Write-Host " MD path: $docsFilePath"
115+
Write-Host " MD path: $docsFilePath"
116116
$docsFolderPath = Split-Path -Path $docsFilePath -Parent
117117
$null = New-Item -Path $docsFolderPath -ItemType Directory -Force
118118
Move-Item -Path $file.FullName -Destination $docsFilePath -Force

0 commit comments

Comments
 (0)