diff options
Diffstat (limited to 'find.go')
| -rw-r--r-- | find.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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 } } } |
