summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 17:35:18 -0600
committerJeff Carr <[email protected]>2025-01-28 17:35:18 -0600
commitd16f4d4d32b47e17b58017bcf2a6e234d720f299 (patch)
treee013c31ead3b94f6cde34281242fa116c4b3594e /find.go
parent51ec39d1579c6bd89d6c5c38a1ff2879c37d3d03 (diff)
more argv cleanups
Diffstat (limited to 'find.go')
-rw-r--r--find.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/find.go b/find.go
index c230330..c81fa60 100644
--- a/find.go
+++ b/find.go
@@ -123,12 +123,16 @@ func findReposWithPatches() {
all := me.forge.Repos.SortByFullPath()
for all.Scan() {
repo := all.Next()
+ if repo.GetUserVersion() == "" || repo.GetUserVersion() == "uerr" {
+ continue
+ }
if repo.IsDirty() {
me.found.AppendByGoPath(repo)
continue
}
if repo.GetUserVersion() != repo.GetDevelVersion() {
me.found.AppendByGoPath(repo)
+ continue
}
}
}