fixes a bug parsing version numbers with a hyphen at the end

This commit is contained in:
Marco P. Monteiro 2014-05-15 23:48:53 -07:00
parent 6570792356
commit 6c98eeb15f
1 changed files with 2 additions and 1 deletions

View File

@ -46,7 +46,8 @@ func nodeName() (string, error) {
}
func parseVersion(str string) (major, minor, patch int, err error) {
parts := strings.Split(str, ".")
versionNumber := strings.Split(str, "-")
parts := strings.Split(versionNumber[0], ".")
len := len(parts)
if major, err = strconv.Atoi(parts[0]); err != nil {