summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-17 09:47:21 -0600
committerJeff Carr <[email protected]>2025-01-17 09:47:21 -0600
commitaf84727178d1fbe1df04a5f8ee536798f3761d6d (patch)
tree913b88f3f6b69420514df8bb758b55e4356b7cd2 /main.go
parent4f282cc30200c5896db2ae4677b20c6f8c1f1abc (diff)
show list patch error
Diffstat (limited to 'main.go')
-rw-r--r--main.go4
1 files changed, 3 insertions, 1 deletions
diff --git a/main.go b/main.go
index 2153692..41151b0 100644
--- a/main.go
+++ b/main.go
@@ -178,7 +178,9 @@ func main() {
}
if argv.Patch.List != nil {
- listPatches()
+ if err := listPatches(); err != nil {
+ badExit(err)
+ }
okExit("patch list")
}
}