diff options
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -142,7 +142,11 @@ func main() { if argv.List != nil { found := argv.List.findRepos() // print out the repos - me.forge.PrintHumanTable(found) + if argv.List.Full { + me.forge.PrintHumanTableFull(found) + } else { + me.forge.PrintHumanTable(found) + } okExit("") } |
