1
0
Fork 0

No issue: fix broken fetch in PrintMentionedIssuesAndPrs.kts (#7258)

master
Severin Rudie 2019-12-17 15:55:29 -08:00 committed by GitHub
parent 52334f9121
commit 8cd759e3d8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ fun getHighestVersionedTag(): String {
}
fun getMostRecentCommonAncestorWithMaster(tag: String): String {
runCommand("git fetch --tags")
runCommand("git fetch $origin --tags")
// TODO use origin master
return runCommand("git merge-base master $tag").trim()
}