diff options
Diffstat (limited to 'build.go')
| -rw-r--r-- | build.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -48,6 +48,11 @@ func (f *Forge) Build(repo *gitpb.Repo, userFlags []string) error { t := loop1.Next() log.Info("Build() dep:", t.GetGoPath(), t.GetVersion()) } + loop2 := repo.Published.SortByGoPath() + for loop2.Scan() { + t := loop2.Next() + log.Info("Build() pub:", t.GetGoPath(), t.GetVersion()) + } log.Info("Build() dep len:", repo.GoDeps.Len()) os.Exit(-1) |
