diff options
| author | Jeff Carr <[email protected]> | 2025-04-04 06:07:56 -0500 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-04-04 06:07:56 -0500 |
| commit | 06cf0f7d844192eacbaeec60e3cc12c9a7968469 (patch) | |
| tree | c4dfe63eb5999960274e27855dfdbc5d1c7ec464 /main.go | |
| parent | 99e30376f0a7835b564e408e877f2faca6ceae29 (diff) | |
fix defective google "Git on Borg" reposv0.22.114
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("") } |
