summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-22 21:05:20 -0600
committerJeff Carr <[email protected]>2024-11-22 21:05:20 -0600
commit8bf3997c81db88d8401db28c86f701be014442c2 (patch)
tree9d9ab69ed59f8caf504da964ff16680b5c8482bf
parent60695905e00ae230f7c345a49d036392a6b3f766 (diff)
repos.FindByName()v0.22.16
-rw-r--r--common.go18
1 files changed, 17 insertions, 1 deletions
diff --git a/common.go b/common.go
index fafc11a..fd2edf8 100644
--- a/common.go
+++ b/common.go
@@ -25,7 +25,23 @@ func (r *RepoList) Hide() {
}
// better name: use this
-func (r *RepoList) FindRepoByName(path string) *RepoRow {
+// matches by path or by name
+func (r *RepoList) FindByName(name string) *RepoRow {
+ loop := r.ReposSortByName()
+ for loop.Scan() {
+ repo := loop.Repo()
+ if repo.GoPath() == name {
+ return repo
+ }
+ base := filepath.Base(repo.GoPath())
+ if base == name {
+ return repo
+ }
+ }
+ return nil
+}
+
+func (r *RepoList) FindByPath(path string) *RepoRow {
return r.FindRepo(path)
}