Skip to content

Commit 376078a

Browse files
authored
Update changelog.main.kts. Force tag fetching (#5421)
The tag was changed, and the script failed during fetching ## Testing It failed locally on my machine, after that it doesn't fail ## Release Notes N/A
1 parent 59e5a8f commit 376078a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/changelog/changelog.main.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -525,7 +525,7 @@ fun githubClone(repo: String): File {
525525
pipeProcess("git clone --bare $url $absolutePath").waitAndCheck()
526526
} else {
527527
println("Fetching $url into ${folder.absolutePath}")
528-
pipeProcess("git -C $absolutePath fetch --tags").waitAndCheck()
528+
pipeProcess("git -C $absolutePath fetch --force --tags").waitAndCheck()
529529
}
530530
return folder
531531
}

0 commit comments

Comments
 (0)