From 6c6815c727168bacff89e65072864182b5383245 Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 15 Feb 2025 18:55:35 -0600 Subject: [PATCH] found a weird defect --- find.go | 10 ++++++++++ 1 file changed, 10 insertions(+) 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 + } } }