keep tracking down publish loops

This commit is contained in:
Jeff Carr 2025-01-18 04:47:57 -06:00
parent 0eeab33e64
commit 9738e869bf
1 changed files with 5 additions and 0 deletions

View File

@ -152,7 +152,12 @@ func rePrepareRelease() {
func alreadyDone(repo *gitpb.Repo) bool {
for _, gopath := range me.done {
log.Info("WARNING already done", repo.GetGoPath(), gopath)
log.Info("WARNING already done", repo.GetGoPath(), gopath)
log.Info("WARNING already done", repo.GetGoPath(), gopath)
if repo.GetGoPath() == gopath {
log.Info("FOUND already done", repo.GetGoPath(), gopath)
log.Sleep(5)
return true
}
}