Skip to content

Commit 728d6be

Browse files
fix: preprocessing.ps1 relative path to remote urls for releases
1 parent 286bd70 commit 728d6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Scripts/PreprocessChangelog.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ if (Test-Path $changelogPath) {
1010
$contentForLinks = $content
1111

1212
# Updating Docs\CHANGELOG.md with links to remote tags
13-
$contentForLinks = $contentForLinks -replace ';;;', "./tree/$Version"
13+
$contentForLinks = $contentForLinks -replace ';;;', "../../../tree/$Version"
1414

1515
# Write the processed content to a new file
1616
Set-Content -Path $changelogPath -Value $contentForLinks -Force

0 commit comments

Comments
 (0)