From dd258155dfedcbfb17b4c9903e967fc394c83e6a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Sat, 30 Nov 2024 02:02:04 -0600 Subject: [PATCH] remove old versions --- main.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/main.go b/main.go index 7a6f4c1..1d2768f 100644 --- a/main.go +++ b/main.go @@ -106,7 +106,7 @@ func main() { // update go.sum and go.mod // todo: only do this if they don't exist? // todo: make these git commit metadata - newr.Status.MakeRedomod() + newr.MakeRedoMod() // double check it actually downloaded fullgitdir := filepath.Join(goSrcPath, argv.Repo, ".git") @@ -167,7 +167,7 @@ func main() { continue } // always do this for now. probably always forever - repo.Status.MakeRedomod() + repo.MakeRedoMod() } } @@ -177,7 +177,7 @@ func main() { loop := rv.ReposSortByName() for loop.Scan() { repo := loop.Repo() - repo.Status.MakeRedomod() + repo.MakeRedoMod() } }