Fix git version check with four digits (1.8.3.1) (#2236)

pull/2248/head
Christoph Handel 7 years ago committed by Lauris BH
parent 66e8262530
commit 539d9f4c30
  1. 2
      modules/setting/setting.go

@ -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 {

Loading…
Cancel
Save