mirror of
https://github.com/minio/minio.git
synced 2025-04-06 12:50:34 -04:00
Merge pull request #825 from harshavardhana/simplify
Simplify version parsing with newVersion() make it more robust
This commit is contained in:
commit
ba6ddd5924
@ -49,20 +49,20 @@ type version struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func newVersion(v string) version {
|
func newVersion(v string) version {
|
||||||
var ver version
|
ver := version{}
|
||||||
verSlice := strings.Split(v, ".")
|
verSlice := strings.Split(v, ".")
|
||||||
if len(verSlice) > 2 {
|
if len(verSlice) < 2 {
|
||||||
ver = version{
|
Fatalln("Version string missing major and minor versions, cannot proceed exiting.")
|
||||||
major: verSlice[0],
|
|
||||||
minor: verSlice[1],
|
|
||||||
patch: verSlice[2],
|
|
||||||
}
|
|
||||||
return ver
|
|
||||||
}
|
}
|
||||||
ver = version{
|
if len(verSlice) > 3 {
|
||||||
major: verSlice[0],
|
Fatalf("Unknown Version style format, newVersion only supports ‘major.minor.patch’ not ‘%s’.\n", v)
|
||||||
minor: verSlice[1],
|
}
|
||||||
patch: "0",
|
ver.major = verSlice[0]
|
||||||
|
ver.minor = verSlice[1]
|
||||||
|
if len(verSlice) == 3 {
|
||||||
|
ver.patch = verSlice[2]
|
||||||
|
} else {
|
||||||
|
ver.patch = "0"
|
||||||
}
|
}
|
||||||
return ver
|
return ver
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user