summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-09-08 05:24:54 -0500
committerJeff Carr <[email protected]>2025-09-08 05:24:54 -0500
commitcd3ca5dc825a2144631a89fe7604a97a121f7af9 (patch)
tree4965aa59df2d5aeeb3fedc3374b8199f114f4929 /doPatch.go
parent2ddba9924c2c172207f465470b51828e30aebb65 (diff)
minor fixesv0.22.150
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/doPatch.go b/doPatch.go
index 5fc54ed..36357b3 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -134,7 +134,7 @@ func doPatch() error {
// return doPatchList()
applied := findApplied()
- if applied.Len() == 0 {
+ if applied == nil || applied.Len() == 0 {
log.Info("no patches have been appled to the devel branch yet")
return nil
}