summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-13 04:14:06 -0600
committerJeff Carr <[email protected]>2025-01-13 04:14:06 -0600
commitce6311893c359f43df14602f58bf241a76ff163c (patch)
tree11822c0fdcd19de2bdc0bad887442d512ba1d242 /find.go
parent96c9588c6b0f3cab63109de54111a4cbd9b8effb (diff)
standard names finally thanks to autogenpb
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)
}
}