From 041be81af1df2353227b24463cca99a3ef1c016a Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Wed, 2 Jul 2025 12:51:00 -0500 Subject: [PATCH] start a "httpPB" scheme --- doPull.go | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/doPull.go b/doPull.go index c700fd2..d177784 100644 --- a/doPull.go +++ b/doPull.go @@ -55,7 +55,12 @@ func doGitPullNew() error { } if argv.GitPull.Patches != nil { - found := findReposWithPatches() + check := findReposWithPatches() + me.forge.PrintHumanTableFull(check) + found, err := me.forge.LookupPB(check) + if err != nil { + return err + } me.forge.PrintHumanTableFull(found) return nil }