Skip to content

Commit

Permalink
missing cast
Browse files Browse the repository at this point in the history
  • Loading branch information
howcanunot committed Mar 20, 2024
1 parent 0c149f9 commit 4ebcb9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion steps/discover-repos.rb
Original file line number Diff line number Diff line change
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 4ebcb9e

Please sign in to comment.