summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
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
}
}
}