summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
Diffstat (limited to 'find.go')
-rw-r--r--find.go3
1 files changed, 2 insertions, 1 deletions
diff --git a/find.go b/find.go
index d8f2231..8dbe55b 100644
--- a/find.go
+++ b/find.go
@@ -117,7 +117,7 @@ func findPublishable() {
}
}
-func findReposWithPatches() {
+func findReposWithPatches() *gitpb.Repos {
for repo := range me.forge.Repos.IterByFullPath() {
if repo.GetTargetVersion() != "" {
// add everything that has a target version set
@@ -148,4 +148,5 @@ func findReposWithPatches() {
continue
}
}
+ return me.found
}