Skip to content

Commit

Permalink
Pass strict flag through to repository backends (#424)
Browse files Browse the repository at this point in the history
  • Loading branch information
ugexe authored Nov 5, 2021
1 parent 139d7d6 commit 4fda826
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Zef/Repository.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ class Zef::Repository does PackageRepository does Pluggable {

my @unsorted-candis = eager gather GROUP: for self!plugins -> @repo-group {
my @group-results = @repo-group.hyper(:batch(1)).map: -> $repo {
$repo.search(@searchable).Slip;
$repo.search(@searchable, :$strict).Slip;
}
if @group-results.elems {
take $_ for @group-results;
Expand Down

0 comments on commit 4fda826

Please sign in to comment.