summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
Diffstat (limited to 'find.go')
-rw-r--r--find.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/find.go b/find.go
index f90d4ee..905176b 100644
--- a/find.go
+++ b/find.go
@@ -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)
}
}