summaryrefslogtreecommitdiff
path: root/build.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-12-01 12:53:08 -0600
committerJeff Carr <[email protected]>2024-12-01 12:53:08 -0600
commit339c88ccbd9975f9d38564097998f9a1dd58fee2 (patch)
treeadea9a8779120fdfdd4f453d0956a30563bbcf0c /build.go
parentd132639049e3631420b212d4ec6d702b2b70f0d2 (diff)
save Published() go depsv0.0.13
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)