summaryrefslogtreecommitdiff
path: root/cleanGoSum.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-11 19:31:37 -0600
committerJeff Carr <[email protected]>2024-12-11 19:31:37 -0600
commitdae2653975b6db822633430a97adbb21b52a99ff (patch)
tree40e9fe53f9149ef090fb7bd40d2c77709b7904c8 /cleanGoSum.go
parent0235d4d0961d71acd3b678dad009d68713bb6621 (diff)
use 'all' instead of 'loop'
Diffstat (limited to 'cleanGoSum.go')
-rw-r--r--cleanGoSum.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cleanGoSum.go b/cleanGoSum.go
index bfbf828..c310523 100644
--- a/cleanGoSum.go
+++ b/cleanGoSum.go
@@ -63,9 +63,9 @@ func (f *Forge) CleanGoDepsCheckOk(check *gitpb.Repo) error {
var err error = nil
log.Printf("current repo %s go dependancy count: %d", check.GetGoPath(), check.GoDepsLen())
- deps := check.GoDeps.SortByGoPath()
- for deps.Scan() {
- depRepo := deps.Next()
+ all := check.GoDeps.SortByGoPath()
+ for all.Scan() {
+ depRepo := all.Next()
found := f.Repos.FindByGoPath(depRepo.GetGoPath())
if found == nil {
if f.checkOverride(depRepo.GetGoPath()) {