From 89dab2b7bc085f24eeafb28906ea3279120ecbfa Mon Sep 17 00:00:00 2001 From: Jeff Carr Date: Fri, 26 Sep 2025 13:04:34 -0500 Subject: show table to send to forged --- doPull.go | 13 +++++++++++++ 1 file changed, 13 insertions(+) (limited to 'doPull.go') diff --git a/doPull.go b/doPull.go index e6e8525..2ed67a1 100644 --- a/doPull.go +++ b/doPull.go @@ -36,6 +36,19 @@ func doPull() error { return nil } */ + if argv.Pull.List != nil { + found := gitpb.NewRepos() + var count int + for { + if count > 10 { + break + } + count += 1 + found.Append(me.forge.Repos.Repos[count]) + } + me.forge.PrintPullTable(found) + return nil + } // below this, you must not be in 'normal' mode if me.forge.Config.Mode == forgepb.ForgeMode_NORMAL { -- cgit v1.2.3