minor fixes

This commit is contained in:
Jeff Carr 2025-09-08 05:24:54 -05:00
parent 2ddba9924c
commit cd3ca5dc82
2 changed files with 2 additions and 3 deletions

View File

@ -34,9 +34,8 @@ func doNormal() bool {
if count > 0 {
log.Info("Some repos are not in a 'normal' state. error count =", count)
log.Info("TODO: list the repos here. forge patch repos?")
configSave = false
me.forge.SetConfigSave(false)
dumpDirtyRepos()
configSave = true
return false
}
return true

View File

@ -134,7 +134,7 @@ func doPatch() error {
// return doPatchList()
applied := findApplied()
if applied.Len() == 0 {
if applied == nil || applied.Len() == 0 {
log.Info("no patches have been appled to the devel branch yet")
return nil
}