summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-07-01 18:54:41 -0500
committerJeff Carr <[email protected]>2025-07-01 18:54:41 -0500
commit1ea9bdf841cb4eae4cd7b1d96288852e799fbeb2 (patch)
treef8b4248268334967b6f668c0a45806f717b60f98 /doPatch.go
parent1d50f9eb697591a0c9fb06056b1c0762c9a7f50d (diff)
deprecate old stuff
Diffstat (limited to 'doPatch.go')
-rw-r--r--doPatch.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/doPatch.go b/doPatch.go
index 8198524..d025de4 100644
--- a/doPatch.go
+++ b/doPatch.go
@@ -31,12 +31,12 @@ func doPatch() error {
// if no option is given to patch, list out the
// repos that have patches ready in them
- findReposWithPatches()
- if me.found.Len() == 0 {
+ found := findReposWithPatches()
+ if found.Len() == 0 {
log.Info("you currently have no patches in your user branches")
return nil
}
- me.forge.PrintHumanTable(me.found)
+ me.forge.PrintHumanTable(found)
return nil
}