Use correct remote on Windows (#6313)

pull/6315/head
John Olheiser 2019-03-12 12:47:04 -05:00 committed by Lauris BH
parent b2e9894988
commit 202a8f6ed9
1 changed files with 1 additions and 1 deletions

View File

@ -200,7 +200,7 @@ func main() {
log.Printf("Fetching PR #%s in %s\n", pr, branch)
if runtime.GOOS == "windows" {
//Use git cli command for windows
runCmd("git", "fetch", "origin", fmt.Sprintf("pull/%s/head:%s", pr, branch))
runCmd("git", "fetch", remoteUpstream, fmt.Sprintf("pull/%s/head:%s", pr, branch))
} else {
ref := fmt.Sprintf("refs/pull/%s/head:%s", pr, branchRef)
err = repo.Fetch(&git.FetchOptions{