tracking down inconsistancies

This commit is contained in:
Jeff Carr 2025-09-04 20:39:32 -05:00
parent f54f189bcd
commit 625dfe2f68
2 changed files with 2 additions and 0 deletions

View File

@ -197,5 +197,6 @@ func (f *Forge) ReAdd(repo *gitpb.Repo) (*gitpb.Repo, error) {
log.Info("ReAdd() error", fullpath, err)
return nil, err
}
f.configSave = true
return repo, err
}

View File

@ -58,6 +58,7 @@ func (f *Forge) AddNamespaceDir(ns string, fullpath string) (*gitpb.Repo, error)
if f.Config.IsReadOnly(repo.GetGoPath()) {
repo.ReadOnly = true
}
f.configSave = true
return repo, nil
}