mirror of
https://github.com/go-gitea/gitea
synced 2024-11-15 14:31:41 +01:00
Fix git version check with four digits (1.8.3.1) (#2236)
This commit is contained in:
parent
66e8262530
commit
539d9f4c30
1 changed files with 1 additions and 1 deletions
|
@ -762,7 +762,7 @@ func NewContext() {
|
||||||
log.Fatal(4, "Error retrieving git version: %v", err)
|
log.Fatal(4, "Error retrieving git version: %v", err)
|
||||||
}
|
}
|
||||||
|
|
||||||
splitVersion := strings.SplitN(binVersion, ".", 3)
|
splitVersion := strings.SplitN(binVersion, ".", 4)
|
||||||
|
|
||||||
majorVersion, err := strconv.ParseUint(splitVersion[0], 10, 64)
|
majorVersion, err := strconv.ParseUint(splitVersion[0], 10, 64)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
|
|
Loading…
Reference in a new issue