diff options
Diffstat (limited to 'doPull.go')
| -rw-r--r-- | doPull.go | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 { |
