summaryrefslogtreecommitdiff
path: root/scanIterator.go
diff options
context:
space:
mode:
authorJeff Carr <[email protected]>2024-11-05 05:58:33 -0600
committerJeff Carr <[email protected]>2024-11-05 05:58:33 -0600
commitaaeb5de034db1de0671f6360b270114f92e11397 (patch)
tree83e579a09f7207943da8d7b67855b6ee297694c6 /scanIterator.go
parent44d221697fa9e5edd81ec99a7041c726d42ba034 (diff)
final commits before releasev0.22.5
Signed-off-by: Jeff Carr <[email protected]>
Diffstat (limited to 'scanIterator.go')
-rw-r--r--scanIterator.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/scanIterator.go b/scanIterator.go
index b021195..c0397eb 100644
--- a/scanIterator.go
+++ b/scanIterator.go
@@ -97,6 +97,9 @@ func (r *RepoList) selectRepoAll() []*RepoRow {
if !repo.Status.InitOk {
continue
}
+ if repo.Status.Whitelist {
+ continue
+ }
repoPointers = append(repoPointers, repo) // Copy pointers for safe iteration
}