diff options
| author | Jeff Carr <[email protected]> | 2025-08-31 12:24:56 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-08-31 12:24:56 -0500 |
| commit | 4fcc1e0349c8a0f13023639e17561bbcb050bffb (patch) | |
| tree | 09ccabdc8e32b528fd21efdc4ed1607e8418fa5b /humanShowRepo.go | |
| parent | a1bab321212258cca84a14832f3ce7fe46bc5f43 (diff) | |
fixes for Append()
Diffstat (limited to 'humanShowRepo.go')
| -rw-r--r-- | humanShowRepo.go | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/humanShowRepo.go b/humanShowRepo.go index 8f2348a..066ff6f 100644 --- a/humanShowRepo.go +++ b/humanShowRepo.go @@ -61,14 +61,7 @@ func (f *Forge) HumanPrintRepo(check *gitpb.Repo) { log.Info("git current name ==", check.GetCurrentBranchName()) // testNext(check) - - found := new(gitpb.Repos) - 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) + // f.PrintHumanTable(check) printTime("Last Pull", check.Times.LastPull.AsTime()) printTime("Last Dirty", check.Times.LastDirty.AsTime()) |
