summaryrefslogtreecommitdiffstats
path: root/pkg/updates
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2018-08-29 09:37:47 +1000
committerJesse Duffield <jessedduffield@gmail.com>2018-08-29 09:37:47 +1000
commitcff1dee6dcb303e789b804bbe270a0032f0b76a7 (patch)
tree4454e0dbc7cc71f263c757c8eca7251e25e98c3d /pkg/updates
parent2181a91fea7e884f8e511e411e137c41d0b5316a (diff)
more lenient version comparison
Diffstat (limited to 'pkg/updates')
-rw-r--r--pkg/updates/updates.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/pkg/updates/updates.go b/pkg/updates/updates.go
index 20f05d87e..ad5dd57b6 100644
--- a/pkg/updates/updates.go
+++ b/pkg/updates/updates.go
@@ -88,6 +88,8 @@ func (u *Updater) majorVersionDiffers(oldVersion, newVersion string) bool {
if oldVersion == "unversioned" {
return false
}
+ oldVersion = strings.TrimPrefix(oldVersion, "v")
+ newVersion = strings.TrimPrefix(newVersion, "v")
return strings.Split(oldVersion, ".")[0] != strings.Split(newVersion, ".")[0]
}