mirror of
https://github.com/go-gitea/gitea
synced 2024-11-02 01:34:21 +01:00
Handle early git version's lack of get-url (#7065)
This commit is contained in:
parent
d01e728090
commit
57b2ce03d5
@ -20,6 +20,7 @@ import (
|
||||
|
||||
"github.com/Unknwon/com"
|
||||
"github.com/go-xorm/xorm"
|
||||
"github.com/mcuadros/go-version"
|
||||
)
|
||||
|
||||
// MirrorQueue holds an UniqueQueue object of the mirror
|
||||
@ -70,7 +71,17 @@ func (m *Mirror) ScheduleNextUpdate() {
|
||||
}
|
||||
|
||||
func remoteAddress(repoPath string) (string, error) {
|
||||
cmd := git.NewCommand("remote", "get-url", "origin")
|
||||
var cmd *git.Command
|
||||
binVersion, err := git.BinVersion()
|
||||
if err != nil {
|
||||
return "", err
|
||||
}
|
||||
if version.Compare(binVersion, "2.7", ">=") {
|
||||
cmd = git.NewCommand("remote", "get-url", "origin")
|
||||
} else {
|
||||
cmd = git.NewCommand("config", "--get", "remote.origin.url")
|
||||
}
|
||||
|
||||
result, err := cmd.RunInDir(repoPath)
|
||||
if err != nil {
|
||||
if strings.HasPrefix(err.Error(), "exit status 128 - fatal: No such remote ") {
|
||||
|
Loading…
Reference in New Issue
Block a user