updater: account for build/publish time diff

pull/298/head v0.5.0
Harvey Tindall 1 year ago
parent 655dc88c62
commit 084a62e60f
No known key found for this signature in database
GPG Key ID: BBC65952848FB1A2

@ -213,7 +213,8 @@ func (ud *Updater) GetTag() (Tag, int, error) {
func (t *Tag) IsNew() bool {
// fmt.Printf("Build Time: %+v, Release Date: %+v", buildTime, t.ReleaseDate)
return t.Version[:7] != commit && t.Ready && t.ReleaseDate.After(buildTime)
// Add 20 minutes to account for build time
return t.Version[:7] != commit && t.Ready && t.ReleaseDate.After(buildTime.Add(time.Duration(20)*time.Minute))
}
func (ud *Updater) getRelease() (release GHRelease, status int, err error) {

Loading…
Cancel
Save