This commit is contained in:
Unknwon 2014-09-16 11:29:53 -04:00
parent 0d9c41be7d
commit 62f21ff3ed
3 changed files with 7 additions and 3 deletions

View file

@ -47,7 +47,7 @@ func MustParseVersion(verStr string) *Version {
}
// Compare compares two versions,
// it returns 1 if original is greater, 1 if original is smaller, 0 if equal.
// it returns 1 if original is greater, -1 if original is smaller, 0 if equal.
func (v *Version) Compare(that *Version) int {
if v.Major > that.Major {
return 1
@ -70,6 +70,10 @@ func (v *Version) Compare(that *Version) int {
return 0
}
func (v *Version) LessThan(that *Version) bool {
return v.Compare(that) < 0
}
// GetVersion returns current Git version installed.
func GetVersion() (*Version, error) {
if gitVer != nil {