Skip to content

Commit 56d1ddc

Browse files
committed
Remove the ~ from the Documentation~ folder name
1 parent 717163d commit 56d1ddc

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Pipelines/Scripts/prepare-pages.ps1

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,8 @@ parent: $packageFriendlyName
8282
}
8383

8484
# Create file, add front matter, and copy content
85-
$fileFolder = Join-Path $packageDocsPath ($_.DirectoryName | Split-Path -Leaf)
85+
# Remove the ~ from the Documentation~ folder name
86+
$fileFolder = (Join-Path $packageDocsPath ($_.DirectoryName | Split-Path -Leaf)).Replace('~', '')
8687
New-Item -Path $fileFolder -ItemType Directory
8788
$fileDestination = Join-Path $fileFolder $_.Name
8889
$fileTitle = Select-String -Pattern "# (.+)" -Path $_ | Select-Object -First 1

0 commit comments

Comments
 (0)