diff options
Diffstat (limited to 'finalGoSumCheck.go')
| -rw-r--r-- | finalGoSumCheck.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/finalGoSumCheck.go b/finalGoSumCheck.go index 0646d39..2c6cefb 100644 --- a/finalGoSumCheck.go +++ b/finalGoSumCheck.go @@ -33,7 +33,7 @@ func (f *Forge) FinalGoDepsCheckOk(check *gitpb.Repo) error { return nil } - deps := check.GoDeps.SortByGoPath() + deps := check.GoInfo.GoDeps.SortByGoPath() for deps.Scan() { depRepo := deps.Next() found := f.Repos.FindByNamespace(depRepo.GetGoPath()) @@ -128,7 +128,7 @@ func (f *Forge) CheckUpdatingGoDeps(godeps *gitpb.GoDeps, upgrading *gitpb.Repos depRepo := all.Next() found := upgrading.FindByNamespace(depRepo.GetGoPath()) if found != nil { - return fmt.Errorf("waiting on %s", depRepo.GetGoPath()) + return fmt.Errorf("can't continue dep. upgrading %s", depRepo.GetGoPath()) } } return nil |
