diff --git a/find.go b/find.go index cf89e55..493e3cc 100644 --- a/find.go +++ b/find.go @@ -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 + } } }