summaryrefslogtreecommitdiffstats
path: root/models/pull.go
diff options
context:
space:
mode:
authorUnknwon <u@gogs.io>2015-11-26 17:33:45 -0500
committerUnknwon <u@gogs.io>2015-11-26 17:33:45 -0500
commitc50a3503e6e8ece0dabd109932a72fe093c3cab3 (patch)
treed9918c4b9c5d5efc94771cae22231fdcc0796102 /models/pull.go
parent2b10fdc4dcb987b347b031f460cf4f02fd48a31a (diff)
downloadgitea-c50a3503e6e8ece0dabd109932a72fe093c3cab3.tar.gz
gitea-c50a3503e6e8ece0dabd109932a72fe093c3cab3.zip
introduce git-shell
Diffstat (limited to 'models/pull.go')
-rw-r--r--models/pull.go7
1 files changed, 1 insertions, 6 deletions
diff --git a/models/pull.go b/models/pull.go
index dfd80635e4..080819cb04 100644
--- a/models/pull.go
+++ b/models/pull.go
@@ -415,12 +415,7 @@ func (pr *PullRequest) UpdatePatch() (err error) {
return fmt.Errorf("GetOwner: %v", err)
}
- headRepoPath, err := pr.HeadRepo.RepoPath()
- if err != nil {
- return fmt.Errorf("HeadRepo.RepoPath: %v", err)
- }
-
- headGitRepo, err := git.OpenRepository(headRepoPath)
+ headGitRepo, err := git.OpenRepository(pr.HeadRepo.RepoPath())
if err != nil {
return fmt.Errorf("OpenRepository: %v", err)
}