summaryrefslogtreecommitdiff
path: root/windowPatches.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-01-28 21:50:07 -0600
committerJeff Carr <[email protected]>2025-01-29 12:18:16 -0600
commit438a8812f6cbd83556ad2d146068e8eca37ca2f4 (patch)
treee7012823f56b3237f19b358ef5b9f206230f9c4c /windowPatches.go
parenteee88af0ce0afd82046985572d2bea0090c7e087 (diff)
smarter git pull
Diffstat (limited to 'windowPatches.go')
-rw-r--r--windowPatches.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/windowPatches.go b/windowPatches.go
index bcb41bb..793afb8 100644
--- a/windowPatches.go
+++ b/windowPatches.go
@@ -130,8 +130,8 @@ func (r *patchesWindow) addPatchset(line string) {
log.Info(name, "was nil")
return
}
- if !savePatchset(pset) {
- log.Info("Save: some patches are bad", name)
+ if err := savePatchset(pset); err != nil {
+ log.Info("Save: some patches are bad", name, err)
return
}
})