diff options
| -rw-r--r-- | find.go | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -151,5 +151,15 @@ func findReposWithPatches() { me.found.AppendByGoPath(repo) continue } + + // this is an old test to see if the current 'last tag' is accurate and should be removed + if me.forge.Config.IsReadOnly(repo.GetGoPath()) { + continue + } + if repo.GetLastTag() != repo.GetMasterVersion() { + me.found.AppendByGoPath(repo) + repo.FindLastTag() + continue + } } } |
