@@ -25,7 +25,7 @@ function Render-Groups {
25
25
26
26
foreach ($group in $groups ) {
27
27
$groupName = $group .' @name'
28
- $destination = " $destinationDirectory \ groups\ $groupName .html"
28
+ $destination = " $destinationDirectory / groups/ $groupName .html"
29
29
$directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
30
30
31
31
$content = Render- IndexPage `
@@ -78,7 +78,7 @@ function Render-Sourcefiles {
78
78
)
79
79
foreach ($sourcefile in $sourcefiles ) {
80
80
$sourcefileName = $sourcefile .' @name'
81
- $destination = " $destinationDirectory \ sources\ $sourcefileName .html"
81
+ $destination = " $destinationDirectory / sources/ $sourcefileName .html"
82
82
$directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
83
83
$sourceCodePath = (Resolve-Path " $sourcesDirectory /$sourcefileName " ).Path
84
84
$sourceCode = Get-Content - Raw - Path $sourceCodePath
@@ -118,7 +118,7 @@ function Render-Packages {
118
118
119
119
foreach ($package in $packages ) {
120
120
$packageName = $package .' @name'
121
- $destination = " $destinationDirectory \ packages\ $packageName .html"
121
+ $destination = " $destinationDirectory / packages/ $packageName .html"
122
122
$directoryDepth = ($destination -split ' [\\/]' ).Count - ($destinationDirectory -split ' [\\/]' ).Count - 1
123
123
124
124
$content = Render- IndexPage `
0 commit comments