summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-06 05:46:07 -0500
committerJeff Carr <[email protected]>2025-10-06 05:46:07 -0500
commitc4b522ce969ecd81c76c7a960072ddf10dd41814 (patch)
tree68efe941a54673e763b92e821dcb9f9dab2306cc
parent13b1e212b3db1004ff0f45af1702d0e5143f74e9 (diff)
changed funcv0.23.135
-rw-r--r--doRelease.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doRelease.go b/doRelease.go
index 774d508..be0b262 100644
--- a/doRelease.go
+++ b/doRelease.go
@@ -60,7 +60,7 @@ func doRelease() error {
// check if the git tag already exists somehow
testtag := me.release.version.String()
- if check.IfRefExists(testtag) {
+ if t := check.IfRefExists(testtag); t != nil {
log.Info("TAG ALREADY EXISTS", testtag)
return log.Errorf("%s TAG ALREADY EXISTS %s", check.FullPath, testtag)
} else {