diff options
| author | Jeff Carr <[email protected]> | 2025-01-13 04:14:06 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-13 04:14:06 -0600 |
| commit | ce6311893c359f43df14602f58bf241a76ff163c (patch) | |
| tree | 11822c0fdcd19de2bdc0bad887442d512ba1d242 /find.go | |
| parent | 96c9588c6b0f3cab63109de54111a4cbd9b8effb (diff) | |
standard names finally thanks to autogenpb
Diffstat (limited to 'find.go')
| -rw-r--r-- | find.go | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -50,7 +50,7 @@ func findPrivate() { for all.Scan() { repo := all.Next() if me.forge.Config.IsPrivate(repo.GetGoPath()) { - me.found.AppendUniqueGoPath(repo) + me.found.AppendByGoPath(repo) } } } @@ -62,7 +62,7 @@ func findMine() { for all.Scan() { repo := all.Next() if me.forge.Config.IsWritable(repo.GetGoPath()) { - me.found.AppendUniqueGoPath(repo) + me.found.AppendByGoPath(repo) } } } @@ -74,7 +74,7 @@ func findFavorites() { for all.Scan() { repo := all.Next() if me.forge.Config.IsFavorite(repo.GetGoPath()) { - me.found.AppendUniqueGoPath(repo) + me.found.AppendByGoPath(repo) } } } @@ -86,7 +86,7 @@ func findDirty() { var repo *gitpb.Repo repo = all.Next() if repo.IsDirty() { - me.found.AppendUniqueGoPath(repo) + me.found.AppendByGoPath(repo) } } } @@ -95,6 +95,6 @@ func findAll() { all := me.forge.Repos.SortByFullPath() for all.Scan() { repo := all.Next() - me.found.AppendUniqueGoPath(repo) + me.found.AppendByGoPath(repo) } } |
