diff options
| author | Jeff Carr <[email protected]> | 2025-09-06 21:50:43 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-09-06 21:50:43 -0500 |
| commit | 5c6bbcdbb2938488c37a9e18b713179ee9340ab8 (patch) | |
| tree | b8af48e03329083e1385e75062914c7c82d3b474 /doFind.go | |
| parent | f6a79c3be8239e80e39c8992b71b43fdc95d61bb (diff) | |
cli user interface
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 } |
