start a "httpPB" scheme

This commit is contained in:
Jeff Carr 2025-07-02 12:51:00 -05:00
parent 4fc9d038ca
commit 041be81af1
1 changed files with 6 additions and 1 deletions

View File

@ -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
}