diff options
| author | Jeff Carr <[email protected]> | 2024-02-01 13:30:26 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-02-01 13:30:26 -0600 |
| commit | 41a61668908536a860dc78de0c9eedbfc179dd63 (patch) | |
| tree | 11130ce0fccdfebd85089789dbea03d104592425 /lookForUnwind.go | |
| parent | 37e1e5a37acf76f4766cfba2ffbe70779852a564 (diff) | |
add version number exception for widget
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'lookForUnwind.go')
| -rw-r--r-- | lookForUnwind.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lookForUnwind.go b/lookForUnwind.go index 5c101bb..1ca7954 100644 --- a/lookForUnwind.go +++ b/lookForUnwind.go @@ -30,8 +30,8 @@ func (r *repo) lookToUnwind() bool { return false } - if "v"+release.versionS != r.lastTag.String() { - log.Info("\trepo version mismatch last vs official", r.lastTag.String(), "!=", release.versionS) + if release.version.String() != r.lastTag.String() { + log.Info("\trepo version mismatch last vs official", r.lastTag.String(), "!=", release.version.String()) r.setGoSumStatus("CAN NOT UNWIND") return false } |
