summaryrefslogtreecommitdiff
path: root/doPatch.go
diff options
context:
space:
mode:
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
}