Skip to content

Commit

Permalink
fix: don't splat features
Browse files Browse the repository at this point in the history
  • Loading branch information
onbjerg committed Apr 23, 2024
1 parent 2ff3fe4 commit e6c3643
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion Formula/reth.rb
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ def install

cd "bin/reth" do
if features.any?
system "cargo", "install", "--bin", "reth", "--profile", "maxperf", "--features", *features, *std_cargo_args
system "cargo", "install", "--bin", "reth", "--profile", "maxperf",
"--features", features.join(" "), *std_cargo_args
else
system "cargo", "install", "--bin", "reth", "--profile", "maxperf", *std_cargo_args
end
Expand Down

0 comments on commit e6c3643

Please sign in to comment.