File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 92
92
$file = $_
93
93
$relPath = [System.IO.Path ]::GetRelativePath($DocsOutputFolder.FullName , $file.FullName )
94
94
Write-Host " - $relPath "
95
- Write-Host " Path: $file "
95
+ Write-Host " Path: $file "
96
96
97
97
# find the source code file that matches the markdown file
98
98
$scriptPath = Get-ChildItem - Path $PublicFunctionsFolder - Recurse - Force | Where-Object { $_.Name -eq ($file.BaseName + ' .ps1' ) }
109
109
$file = $_
110
110
$relPath = [System.IO.Path ]::GetRelativePath($PublicFunctionsFolder.FullName , $file.FullName )
111
111
Write-Host " - $relPath "
112
- Write-Host " Path: $file "
112
+ Write-Host " Path: $file "
113
113
114
114
$docsFilePath = ($file.FullName ).Replace($PublicFunctionsFolder.FullName , $DocsOutputFolder.FullName )
115
- Write-Host " MD path: $docsFilePath "
115
+ Write-Host " MD path: $docsFilePath "
116
116
$docsFolderPath = Split-Path - Path $docsFilePath - Parent
117
117
$null = New-Item - Path $docsFolderPath - ItemType Directory - Force
118
118
Move-Item - Path $file.FullName - Destination $docsFilePath - Force
You can’t perform that action at this time.
0 commit comments