diff options
Diffstat (limited to 'goSrcScan.go')
| -rw-r--r-- | goSrcScan.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/goSrcScan.go b/goSrcScan.go index d7a6cea..473e36b 100644 --- a/goSrcScan.go +++ b/goSrcScan.go @@ -133,9 +133,9 @@ func (f *Forge) rillScanDirs(gopaths []string) (int, error) { func (f *Forge) RillRedoGoMod() int { var all []*gitpb.Repo - repos := f.Repos.SortByGoPath() - for repos.Scan() { - repo := repos.Next() + tmp := f.Repos.SortByGoPath() + for tmp.Scan() { + repo := tmp.Next() if !repo.IsValid() { log.Printf("%10s %-50s", "old?", repo.GetGoPath()) continue |
