diff options
Diffstat (limited to 'doListRepos.go')
| -rw-r--r-- | doListRepos.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doListRepos.go b/doListRepos.go index 67d7227..17f6a64 100644 --- a/doListRepos.go +++ b/doListRepos.go @@ -12,9 +12,7 @@ import ( ) func doListRepos() { - all := me.forge.Repos.SortByFullPath() - for all.Scan() { - check := all.Next() + for check := range me.forge.Repos.IterAll() { repotype := check.GetRepoType() if repotype == "binary" || repotype == "plugin" { @@ -28,6 +26,7 @@ func doListRepos() { // ignore read only stuff continue } + log.Info("doListRepos() START", check.FullPath) // var cmd []string var start string @@ -89,5 +88,6 @@ func doListRepos() { // err := fmt.Sprintf("name is blank error %+v", repo) log.Warn("name is blank error", check.GetGoPath()) } + log.Info("doListRepos() END", check.FullPath) } } |
