summaryrefslogtreecommitdiff
path: root/doFind.go
diff options
context:
space:
mode:
Diffstat (limited to 'doFind.go')
-rw-r--r--doFind.go10
1 files changed, 9 insertions, 1 deletions
diff --git a/doFind.go b/doFind.go
index a6d4720..8c4acea 100644
--- a/doFind.go
+++ b/doFind.go
@@ -167,10 +167,18 @@ func findReposWithPatches() *gitpb.Repos {
continue
}
- // this is an old test to see if the current 'last tag' is accurate and should be removed
+ // ignore read-only repos for checks below here
if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
continue
}
+
+ // show anything that differs between 'devel' & 'master' branches
+ if repo.GetDevelVersion() != repo.GetMasterVersion() {
+ found.AppendByGoPath(repo)
+ continue
+ }
+
+ // this is an old test to see if the current 'last tag' is accurate and should be removed
if repo.GetLastTag() != repo.GetMasterVersion() {
found.AppendByGoPath(repo)
repo.FindLastTag()