summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-04-04 06:07:56 -0500
committerJeff Carr <[email protected]>2025-04-04 06:07:56 -0500
commit06cf0f7d844192eacbaeec60e3cc12c9a7968469 (patch)
treec4dfe63eb5999960274e27855dfdbc5d1c7ec464 /main.go
parent99e30376f0a7835b564e408e877f2faca6ceae29 (diff)
fix defective google "Git on Borg" reposv0.22.114
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("")
}