diff options
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) } } |
