diff options
| author | Jeff Carr <[email protected]> | 2025-10-22 16:32:28 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-10-22 16:32:28 -0500 |
| commit | a2d6aac9f22bfe1060930e756a7dff86b3918f7e (patch) | |
| tree | a2c95d61c9d1e47a321e773857aebffdd6244474 /build.go | |
| parent | 8535f407ac1e317df9d9bb34dbef7194b23eea1e (diff) | |
wrong logic in func. need to redo this whole thing.v0.0.188
Diffstat (limited to 'build.go')
| -rw-r--r-- | build.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -62,7 +62,7 @@ func (f *Forge) doBuild(repo *gitpb.Repo, userFlags []string, goWhat string) err all := repo.GoDeps.SortByGoPath() for all.Scan() { t := all.Next() - found := f.FindByNamespace(t.GetGoPath()) + found := f.Repos.FindByNamespace(t.GetGoPath()) if found.GetRepoType() == "protobuf" { if err := f.runAutogenpb(found); err != nil { return err |
