Skip to content

Commit

Permalink
[yegor256#211] Fix missing cast to hash in repo discovery script
Browse files Browse the repository at this point in the history
  • Loading branch information
howcanunot committed Mar 17, 2024
1 parent a015a01 commit 15c4de1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/discover-repos.rb
Expand Up @@ -102,7 +102,7 @@
puts "Found #{found.count} total repositories in GitHub"

if found.count > opts[:total]
found = found.first(opts[:total])
found = found.first(opts[:total]).to_h
puts "We will use only the first #{opts[:total]} repositories"
end

Expand Down

0 comments on commit 15c4de1

Please sign in to comment.