Skip to content

Commit 70ce267

Browse files
🩹 [Patch]: Fix output folder variable reference in command processing for markdown generation
1 parent 2cb6082 commit 70ce267

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

‎scripts/helpers/Build-PSModuleDocumentation.ps1‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
Write-Host "$($command.Name)" -NoNewline
6060
$params = @{
6161
CommandInfo = $command
62-
OutputFolder = $DocsOutputFolder
62+
OutputFolder = $docsOutputFolder
6363
Encoding = 'utf8'
6464
ProgressAction = 'SilentlyContinue'
6565
ErrorAction = 'Stop'
@@ -69,6 +69,7 @@
6969
Write-Host ' - ✓' -ForegroundColor Green
7070
} catch {
7171
Write-Host ' - ✗' -ForegroundColor Red
72+
$_
7273
}
7374
}
7475

0 commit comments

Comments
 (0)