summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-29 17:37:16 -0500
committerJeff Carr <[email protected]>2025-08-29 17:37:16 -0500
commit9292eb18fa1ccec8229c3182c2dcbeab03d09e58 (patch)
treeb5566f3e8b658a061a74ec1085c7e71a08e75b29
parentb70417565aaff44d3139ce1f6e9d3edd06fa5291 (diff)
still need to work on thisv0.22.133v0.22.132v0.22.131
-rw-r--r--doFind.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/doFind.go b/doFind.go
index c6d11ea..ca8ab76 100644
--- a/doFind.go
+++ b/doFind.go
@@ -180,17 +180,17 @@ func findReposWithPatches() *gitpb.Repos {
continue
}
- // 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
}
+ // ignore read-only repos for checks below here
+ if me.forge.Config.IsReadOnly(repo.GetGoPath()) {
+ 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)