summaryrefslogtreecommitdiff
path: root/cobol.go
diff options
context:
space:
mode:
Diffstat (limited to 'cobol.go')
-rw-r--r--cobol.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cobol.go b/cobol.go
index 0812370..4c2263d 100644
--- a/cobol.go
+++ b/cobol.go
@@ -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)
}
}