summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doPull.go7
1 files changed, 6 insertions, 1 deletions
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
}