diff options
| -rw-r--r-- | doInstall.go | 2 | ||||
| -rw-r--r-- | doListRepos.go | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/doInstall.go b/doInstall.go index 9230243..ae2f86c 100644 --- a/doInstall.go +++ b/doInstall.go @@ -29,6 +29,7 @@ func doInstall() error { // ignore read only stuff continue } + log.Info("doInstall() START", check.FullPath) // var cmd []string var start string @@ -91,6 +92,7 @@ func doInstall() error { log.Warn("name is blank error", check.GetGoPath()) } + log.Info("doInstall() END", check.FullPath) if argv.DryRun { continue } 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) } } |
