summaryrefslogtreecommitdiff
path: root/tagWindow.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-02-09 05:24:24 -0600
committerJeff Carr <[email protected]>2024-02-09 05:24:24 -0600
commitd590533ad55395991f66dd13d53215ebec3c68e7 (patch)
tree8059f9abe0f7e111cf11b2d8f251ea5f4bb8a833 /tagWindow.go
parentcec7bb8b076e6c4f12dd11601b87bbff98a71bb0 (diff)
spawn every second
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'tagWindow.go')
-rw-r--r--tagWindow.go8
1 files changed, 3 insertions, 5 deletions
diff --git a/tagWindow.go b/tagWindow.go
index 0eda982..ff3a3ba 100644
--- a/tagWindow.go
+++ b/tagWindow.go
@@ -65,7 +65,7 @@ func makeTagWindow() *tagWindow {
me.autotypistWindow.Disable()
defer me.autotypistWindow.Enable()
for _, repo := range me.allrepos {
- if repo.String() == "go.wit.com/log" {
+ if repo.String() == "go.wit.com/lib/gadgets" {
// only do log for now
} else {
// continue
@@ -89,12 +89,10 @@ func makeTagWindow() *tagWindow {
log.Info("delete tag --dry-run:", t.TagString(), "from", repo.status.String())
} else {
log.Info("Deleting tag:", t.TagString(), "from", repo.status.String())
- tagsW.Delete(t)
+ go tagsW.Delete(t)
+ log.Sleep(1)
}
}
- if ! me.autoDryRun.Checked() {
- return
- }
}
})