This commit is contained in:
Jeff Carr 2025-01-18 08:04:39 -06:00
parent e4616e5971
commit 31a8c54d0f
1 changed files with 2 additions and 3 deletions

View File

@ -152,9 +152,9 @@ func rePrepareRelease() {
func printDone() {
for _, gopath := range me.done {
log.Info("WARNING already done", gopath)
log.Sleep(5)
log.Info("printDone() THESE SHOULD NEVER REPEAT: already done:", gopath)
}
log.Sleep(5)
}
func alreadyDone(repo *gitpb.Repo) bool {
@ -164,7 +164,6 @@ func alreadyDone(repo *gitpb.Repo) bool {
// log.Info("WARNING already done", gopath, repo.GetGoPath())
if repo.GetGoPath() == gopath {
log.Info("FOUND. RETURN TRUE. already done", gopath, repo.GetGoPath())
log.Sleep(5)
return true
}
}