summaryrefslogtreecommitdiff
path: root/build.go
diff options
context:
space:
mode:
Diffstat (limited to 'build.go')
-rw-r--r--build.go5
1 files changed, 5 insertions, 0 deletions
diff --git a/build.go b/build.go
index 7e046e5..f958e80 100644
--- a/build.go
+++ b/build.go
@@ -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)