summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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
- }
}
})