summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-10-05 13:24:17 -0500
committerJeff Carr <[email protected]>2025-10-05 13:24:17 -0500
commitb2f7bf5222fd8dcb43ab4c11f57788f2284f9de3 (patch)
treee15adbf2559799bbb61466e713e2dab6e6f848ad
parent83e4e0953f7e3ff9639943c21484327ec32ebfe3 (diff)
fixed to new functionv0.23.134
-rw-r--r--doRelease.go2
-rw-r--r--main.go4
2 files changed, 3 insertions, 3 deletions
diff --git a/doRelease.go b/doRelease.go
index 62a3dc4..6a4b941 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.LocalTagExists(testtag) {
+ if check.IfRefExists(testtag) {
log.Info("TAG ALREADY EXISTS", testtag)
return log.Errorf("%s TAG ALREADY EXISTS %s", check.FullPath, testtag)
} else {
diff --git a/main.go b/main.go
index a6c1506..dc3189c 100644
--- a/main.go
+++ b/main.go
@@ -128,8 +128,8 @@ func main() {
if argv.AutoRun {
go startHTTP()
- log.Info("Attempt to auto-run here. sleep 5")
- time.Sleep(5 * time.Second)
+ log.Info("Attempt to auto-run here. sleep 1")
+ time.Sleep(1 * time.Second)
buttonDisable()
doReleaseAll()