diff options
| author | Jeff Carr <[email protected]> | 2024-12-11 19:32:04 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-11 19:32:04 -0600 |
| commit | ada387b966b901055e87e5b7d7d4902246c4e69e (patch) | |
| tree | 57a3ad70fbf6b91d06830d8efabe0f572d808855 /cobol.go | |
| parent | 353290ecb1ba1f84e55cbcc23233055a26f7208f (diff) | |
'all' seems more sensible than 'loop'
Diffstat (limited to 'cobol.go')
| -rw-r--r-- | cobol.go | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -34,9 +34,9 @@ func doCobol() { log.DaemonMode(true) log.Info(standardStart5("gopath", "cur name", "master", "user", "repo type")) - repos := me.found.SortByGoPath() - for repos.Scan() { - repo := repos.Next() + all := me.found.SortByGoPath() + for all.Scan() { + repo := all.Next() verifyPrint(repo) } } |
