summaryrefslogtreecommitdiff
path: root/checkReady.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-01 13:30:26 -0600
committerJeff Carr <[email protected]>2024-02-01 13:30:26 -0600
commit41a61668908536a860dc78de0c9eedbfc179dd63 (patch)
tree11130ce0fccdfebd85089789dbea03d104592425 /checkReady.go
parent37e1e5a37acf76f4766cfba2ffbe70779852a564 (diff)
add version number exception for widget
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'checkReady.go')
-rw-r--r--checkReady.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/checkReady.go b/checkReady.go
index 2a9fad2..2a5c2e3 100644
--- a/checkReady.go
+++ b/checkReady.go
@@ -35,8 +35,9 @@ func CheckReady() bool {
lastS := release.current.status.GetLastTagVersion()
currentS := release.current.status.GetCurrentBranchVersion()
- targetS := "v" + release.versionS
- log.Info("repo:", release.current.String(), goSumS, dirtyS, lastS, currentS)
+ var targetS string
+ targetS = "v" + release.version.String()
+ log.Info("repo:", release.current.String(), goSumS, dirtyS, lastS, currentS, targetS)
if goSumS == "PRIMATIVE" {
return true