summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 13:20:10 -0600
committerJeff Carr <[email protected]>2025-01-28 13:20:10 -0600
commit91c28de514b1a41e2355714f5352f5438dbe34a2 (patch)
treefbf0c71cecc509195501be13a26dd07c0d026706 /main.go
parent3b6e84abdfdff7181c1eb9553a6c6589d6ba027a (diff)
make a patchset grid widget
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 73bab4b..0313596 100644
--- a/main.go
+++ b/main.go
@@ -144,9 +144,13 @@ func main() {
}
if argv.Patch.List != nil {
- if err := listPatches(); err != nil {
+ lines, err := listPatches()
+ if err != nil {
badExit(err)
}
+ for i, line := range lines {
+ log.Info(i, line)
+ }
okExit("patch list")
}
}