summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-16 21:20:33 -0600
committerJeff Carr <[email protected]>2024-02-16 21:20:33 -0600
commit6b5472ea43826bf1fce95257ffe51560ef3e0f04 (patch)
tree429008027012a1753747d6386009c85372c4bfb6
parentdc2b16840e9fb09c1c3cf97307b500acf99de1cc (diff)
working towards a new release
-rw-r--r--checkReady.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/checkReady.go b/checkReady.go
index 1c4757b..988efca 100644
--- a/checkReady.go
+++ b/checkReady.go
@@ -112,10 +112,10 @@ func CheckReady() bool {
}
// final checks here
- if dirtyS == "ready to tag version" {
- log.Info("\trepo is ready", release.current.String(), "ready to tag version")
+ if dirtyS == "unchanged" {
+ log.Info("\trepo is ready", release.current.String(), "unchanged")
} else {
- log.Info("\trepo is not ready", dirtyS, "!= 'ready to tag version'")
+ log.Info("\trepo is not ready", dirtyS, "!= 'unchanged'")
return false
}