summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.go b/main.go
index 03bfc56..6e63f12 100644
--- a/main.go
+++ b/main.go
@@ -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("")
}