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)
|
||||
}
|
||||
|
||||
splitVersion := strings.SplitN(binVersion, ".", 3)
|
||||
splitVersion := strings.SplitN(binVersion, ".", 4)
|
||||
|
||||
majorVersion, err := strconv.ParseUint(splitVersion[0], 10, 64)
|
||||
if err != nil {
|
||||
|
|
Reference in a new issue