print published repos at the end

This commit is contained in:
Jeff Carr 2025-01-20 05:09:28 -06:00
parent 782a2c35b1
commit 9ef08346f8
2 changed files with 3 additions and 2 deletions

View File

@ -141,9 +141,9 @@ func rePrepareRelease() {
func printDone() { func printDone() {
for _, gopath := range me.done { for _, gopath := range me.done {
log.Info("printDone() THESE SHOULD NEVER REPEAT: already done:", gopath) log.Info("printDone() THESE WERE PUBLISHED", gopath)
} }
log.Sleep(5) log.Sleep(1)
} }
func alreadyDone(repo *gitpb.Repo) bool { func alreadyDone(repo *gitpb.Repo) bool {

View File

@ -143,6 +143,7 @@ func createReleaseBox(box *gui.Node) {
log.Info("doReleaseAll() first is 0. everything is done. second is", second) log.Info("doReleaseAll() first is 0. everything is done. second is", second)
log.Info("exit() here safely") log.Info("exit() here safely")
me.forge.ConfigSave() me.forge.ConfigSave()
printDone()
okExit("") okExit("")
return return
} }