summaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-08-28 14:26:23 -0500
committerJeff Carr <[email protected]>2025-08-28 19:30:59 -0500
commit7a547a203dffc756e1c52985fee846c4506596a5 (patch)
tree8633f93cb5088295d7b5da79b0a1ee454c62da1c /main.go
parentc193af11e7f2d32b336127e123e496c5c16915e3 (diff)
config file save starting to work
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 4da231a..893c20d 100644
--- a/main.go
+++ b/main.go
@@ -53,7 +53,9 @@ func main() {
}
if argv.Merge != nil {
- doMerge()
+ if err := doMerge(); err != nil {
+ badExit(err)
+ }
okExit("")
}