Skip to content

Commit

Permalink
Merge pull request #574 from ugexe/fix-missing-support
Browse files Browse the repository at this point in the history
Fix browse sub command error message
  • Loading branch information
ugexe authored Oct 12, 2024
2 parents 51f34a8 + 50a1327 commit d516f28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Zef/CLI.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -894,7 +894,7 @@ package Zef::CLI {
my $candi = $client.resolve($identity).head
|| $client.search($identity, :strict, :max-results(1))[0]\
|| abort "!!!> Found no candidates matching identity: {$identity}";
my %support = $candi.dist.meta<support>;
my %support = $candi.dist.meta<support>.hash;
my $url = %support{$url-type};
my @has-urls = grep { %support{$_} }, <homepage bugtracker source>;
unless $url && $url.starts-with('http://' | 'https://') {
Expand Down

0 comments on commit d516f28

Please sign in to comment.