diff options
| author | Jeff Carr <[email protected]> | 2024-12-01 12:53:08 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2024-12-01 12:53:08 -0600 |
| commit | 339c88ccbd9975f9d38564097998f9a1dd58fee2 (patch) | |
| tree | adea9a8779120fdfdd4f453d0956a30563bbcf0c /build.go | |
| parent | d132639049e3631420b212d4ec6d702b2b70f0d2 (diff) | |
save Published() go depsv0.0.13
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) |
