summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-30 23:18:25 -0600
committerJeff Carr <[email protected]>2025-01-31 13:47:45 -0600
commitfb91818c5f31da0b0f9103a6ed6dd65fdc8c595e (patch)
treef837f6742cf4d14f5ed93f4f48680b14b515e9ff /doPatch.go
parent5f0a271bf767a35370b6fcf078847f9fceba8d7d (diff)
save the patchsets file
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go8
1 files changed, 4 insertions, 4 deletions
diff --git a/doPatch.go b/doPatch.go
index c441b3e..59f1cf8 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -49,10 +49,6 @@ func doPatchList() error {
// log.Info("pset name =", pset.Name)
dumpPatchset(pset)
}
-
- // if err := savePatchsets(psets); err != nil {
- // return err
- // }
return nil
}
@@ -169,5 +165,9 @@ func doPatchGet() error {
// log.Info("pset name =", pset.Name)
dumpPatchset(pset)
}
+
+ if err := savePatchsets(psets); err != nil {
+ return err
+ }
return nil
}