diff options
| author | Jeff Carr <[email protected]> | 2025-10-05 06:11:57 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-05 06:11:57 -0500 |
| commit | c27727c8e0111f4830ac365614a0de7198314306 (patch) | |
| tree | 708a97fe4ac3d72101f88e398a86a9e74a74ae8e /doFind.go | |
| parent | 44c1fcc9c316636fdc4f52f11ee3eb8045cdfcd1 (diff) | |
s/GoPath/Namespace/v0.25.57
Diffstat (limited to 'doFind.go')
| -rw-r--r-- | doFind.go | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -69,7 +69,7 @@ func findRepos() *gitpb.Repos { func findPrivate() *gitpb.Repos { found := gitpb.NewRepos() for repo := range me.forge.Repos.IterByFullPath() { - if me.forge.Config.IsPrivate(repo.GetGoPath()) { + if me.forge.Config.IsPrivate(repo.Namespace) { found.AppendByFullPath(repo) } } @@ -84,7 +84,7 @@ func findMine() *gitpb.Repos { // log.Printf("get mine %s\n", me.forge.GetGoSrc()) for repo := range me.forge.Repos.IterByFullPath() { - if me.forge.Config.IsWritable(repo.GetGoPath()) { + if me.forge.Config.IsWritable(repo.Namespace) { found.AppendByFullPath(repo) } } @@ -98,7 +98,7 @@ func findFavorites() *gitpb.Repos { // log.Printf("get favorites %s\n", me.forge.GetGoSrc()) for repo := range me.forge.Repos.IterByFullPath() { - if me.forge.Config.IsFavorite(repo.GetGoPath()) { + if me.forge.Config.IsFavorite(repo.Namespace) { found.AppendByFullPath(repo) } } @@ -168,7 +168,7 @@ func findReposWithPatches() *gitpb.Repos { } // ignore read-only repos for checks below here - if me.forge.Config.IsReadOnly(repo.GetGoPath()) { + if me.forge.Config.IsReadOnly(repo.Namespace) { continue } |
