remove old versions

This commit is contained in:
Jeff Carr 2024-11-30 02:02:04 -06:00
parent 6e5fbd4c33
commit dd258155df
1 changed files with 3 additions and 3 deletions

View File

@ -106,7 +106,7 @@ func main() {
// update go.sum and go.mod // update go.sum and go.mod
// todo: only do this if they don't exist? // todo: only do this if they don't exist?
// todo: make these git commit metadata // todo: make these git commit metadata
newr.Status.MakeRedomod() newr.MakeRedoMod()
// double check it actually downloaded // double check it actually downloaded
fullgitdir := filepath.Join(goSrcPath, argv.Repo, ".git") fullgitdir := filepath.Join(goSrcPath, argv.Repo, ".git")
@ -167,7 +167,7 @@ func main() {
continue continue
} }
// always do this for now. probably always forever // always do this for now. probably always forever
repo.Status.MakeRedomod() repo.MakeRedoMod()
} }
} }
@ -177,7 +177,7 @@ func main() {
loop := rv.ReposSortByName() loop := rv.ReposSortByName()
for loop.Scan() { for loop.Scan() {
repo := loop.Repo() repo := loop.Repo()
repo.Status.MakeRedomod() repo.MakeRedoMod()
} }
} }