diff options
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) } } |
