diff options
| author | Jeff Carr <[email protected]> | 2025-01-28 13:20:10 -0600 |
|---|---|---|
| committer | Jeff Carr <[email protected]> | 2025-01-28 13:20:10 -0600 |
| commit | 91c28de514b1a41e2355714f5352f5438dbe34a2 (patch) | |
| tree | fbf0c71cecc509195501be13a26dd07c0d026706 /main.go | |
| parent | 3b6e84abdfdff7181c1eb9553a6c6589d6ba027a (diff) | |
make a patchset grid widget
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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") } } |
