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