closer to working

This commit is contained in:
Jeff Carr 2024-02-20 18:55:01 -06:00
parent 8cc86a91cb
commit c6fcf5e5a5
2 changed files with 4 additions and 3 deletions

View File

@ -89,7 +89,8 @@ func main() {
me.release.openrepo.Disable()
me.Disable()
log.Sleep(5)
log.Info("sleep(1)")
log.Sleep(1)
// parse config file and scan for .git repos
me.repos.initRepoList()

View File

@ -334,11 +334,11 @@ func findNextDirty(onlyKind string) bool {
continue
}
if repo.ReadOnly() {
log.Info("findNextDirty() skipping readonly")
// log.Info("findNextDirty() skipping readonly")
continue
}
if repo.CheckDirty() {
log.Info("findNextDirty() skipping readonly")
log.Info("findNextDirty() skipping dirty")
continue
}
log.Info("findNextDirty()", repo.GoPath(), goSumS)