summaryrefslogtreecommitdiff
path: root/doFind.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-06 21:50:43 -0500
committerJeff Carr <[email protected]>2025-09-06 21:50:43 -0500
commit5c6bbcdbb2938488c37a9e18b713179ee9340ab8 (patch)
treeb8af48e03329083e1385e75062914c7c82d3b474 /doFind.go
parentf6a79c3be8239e80e39c8992b71b43fdc95d61bb (diff)
cli user interface
Diffstat (limited to 'doFind.go')
-rw-r--r--doFind.go8
1 files changed, 8 insertions, 0 deletions
diff --git a/doFind.go b/doFind.go
index b100ecd..6aaaeb2 100644
--- a/doFind.go
+++ b/doFind.go
@@ -170,6 +170,14 @@ func findReposWithPatches() *gitpb.Repos {
// show anything that differs between 'devel' & 'master' branches
if repo.GetDevelVersion() != repo.GetMasterVersion() {
+ // this repo.State code isn't great, but it got me here quickly
+ // I'll defend my code by saying it's faster for me if I do dumb things
+ // sometimes and fix them later. Probably some employee will have to
+ // fix this. if that is the case I owe you lunch. or stock options
+ if repo.State == "DEVEL behind MASTER" {
+ // log.Info("repo state", repo.FullPath, repo.State)
+ continue
+ }
found.AppendByFullPath(repo)
continue
}