Browse Source

Fix git open close bug (#12834)

for-closed-social
Lunny Xiao 3 years ago
committed by GitHub
parent
commit
642c3c258b
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      services/pull/pull.go

+ 3
- 3
services/pull/pull.go View File

@ -10,7 +10,7 @@ import (
"context"
"encoding/json"
"fmt"
"path"
"path/filepath"
"strings"
"time"
@ -421,6 +421,7 @@ func PushToBaseRepo(pr *models.PullRequest) (err error) {
if err != nil {
return fmt.Errorf("OpenRepository: %v", err)
}
defer gitRepo.Close()
if err := pr.LoadBaseRepo(); err != nil {
log.Error("Unable to load base repository for PR[%d] Error: %v", pr.ID, err)
@ -429,12 +430,11 @@ func PushToBaseRepo(pr *models.PullRequest) (err error) {
if err := gitRepo.AddRemote("base", pr.BaseRepo.RepoPath(), false); err != nil {
return fmt.Errorf("tmpGitRepo.AddRemote: %v", err)
}
defer gitRepo.Close()
headFile := pr.GetGitRefName()
// Remove head in case there is a conflict.
file := path.Join(pr.BaseRepo.RepoPath(), headFile)
file := filepath.Join(pr.BaseRepo.RepoPath(), headFile)
_ = util.Remove(file)

Loading…
Cancel
Save