Browse Source

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
pull/5422/head
Igor Demin 3 months ago committed by GitHub
parent
commit
376078a34f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      tools/changelog/changelog.main.kts

2
tools/changelog/changelog.main.kts

@ -525,7 +525,7 @@ fun githubClone(repo: String): File { @@ -525,7 +525,7 @@ fun githubClone(repo: String): File {
pipeProcess("git clone --bare $url $absolutePath").waitAndCheck()
} else {
println("Fetching $url into ${folder.absolutePath}")
pipeProcess("git -C $absolutePath fetch --tags").waitAndCheck()
pipeProcess("git -C $absolutePath fetch --force --tags").waitAndCheck()
}
return folder
}

Loading…
Cancel
Save