summaryrefslogtreecommitdiff
path: root/find.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2025-05-31 21:53:14 -0500
committerJeff Carr <[email protected]>2025-05-31 21:53:14 -0500
commit391d47318befa791a2417b2eb7f5116048d46f66 (patch)
tree598b20e1023d4ea0bd9972db3e3b9e61588a5528 /find.go
parent1282c17e8119a2debdfce0448b6c4b909b53f447 (diff)
fix "patchable" repos buttonv0.22.118
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
}