This commit is contained in:
Jeff Carr 2025-02-09 14:48:47 -06:00
parent 018772dbfb
commit f70f54615f
1 changed files with 3 additions and 0 deletions

View File

@ -110,6 +110,9 @@ func (f *Forge) CheckOverride(gopath string) bool {
} }
func (f *Forge) TestGoDepsCheckOk(godeps *gitpb.GoDeps, verbose bool) error { func (f *Forge) TestGoDepsCheckOk(godeps *gitpb.GoDeps, verbose bool) error {
if godeps == nil {
return nil
}
all := godeps.SortByGoPath() all := godeps.SortByGoPath()
for all.Scan() { for all.Scan() {
depRepo := all.Next() depRepo := all.Next()