Add version checks for golang 1.5.1

This commit is contained in:
Harshavardhana
2015-09-17 16:32:09 -07:00
parent 87a20e3ba3
commit b5246dbd7d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -90,7 +90,7 @@ func checkGolangRuntimeVersion() {
v1 := newVersion(getNormalizedGolangVersion())
v2 := newVersion(minGolangRuntimeVersion)
if v1.LessThan(v2) {
Errorln("Old Golang runtime version " + v1.String() + " detected., mc requires minimum go1.5 or later.")
Errorln("Old Golang runtime version " + v1.String() + " detected., mc requires minimum go1.5.1 or later.")
}
}