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