Implement update command

This commit is contained in:
Harshavardhana
2015-10-17 15:03:46 -07:00
parent 357f9d7a05
commit 47f1ffa1f3
7 changed files with 299 additions and 7 deletions
+1 -1
View File
@@ -90,6 +90,6 @@ func checkGolangRuntimeVersion() {
v1 := newVersion(getNormalizedGolangVersion())
v2 := newVersion(minGolangRuntimeVersion)
if v1.LessThan(v2) {
Fatalln("Old Golang runtime version " + v1.String() + " detected., mc requires minimum go1.5.1 or later.")
Fatalln("Old Golang runtime version " + v1.String() + " detected., minio requires minimum go1.5.1 or later.")
}
}