diff options
Diffstat (limited to 'humanShowRepo.go')
| -rw-r--r-- | humanShowRepo.go | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/humanShowRepo.go b/humanShowRepo.go index 1416d3b..4e5ccfa 100644 --- a/humanShowRepo.go +++ b/humanShowRepo.go @@ -61,7 +61,11 @@ func (f *Forge) HumanPrintRepo(check *gitpb.Repo) { // testNext(check) found := new(gitpb.Repos) - found.AppendUniqueGoPath(check) + if !found.AppendByGoPath(check) { + log.Info("forgepb check. repo already existed", check.FullPath, check.GetGoPath()) + } else { + log.Info("forgepb check. repo was new", check.FullPath, check.GetGoPath()) + } f.PrintHumanTable(found) printTime("Last Pull", check.Times.LastPull.AsTime()) |
