From 4db9040c0bfbfe090dd06fde358ffacc3029281f Mon Sep 17 00:00:00 2001 From: Oliver Nordbjerg Date: Wed, 24 Apr 2024 00:12:14 +0200 Subject: [PATCH] chore: fmt --- Formula/reth.rb | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Formula/reth.rb b/Formula/reth.rb index 99e8e42..206f0d8 100644 --- a/Formula/reth.rb +++ b/Formula/reth.rb @@ -18,13 +18,13 @@ class Reth < Formula def install if Hardware::CPU.intel? - cd "bin/reth" do - system "cargo", "install", "--bin", "reth", "--profile", "maxperf", "--features", "jemalloc", *std_cargo_args - end + cd "bin/reth" do + system "cargo", "install", "--bin", "reth", "--profile", "maxperf", "--features", "jemalloc", *std_cargo_args + end else - cd "bin/reth" do - system "cargo", "install", "--bin", "reth", "--profile", "maxperf", *std_cargo_args - end + cd "bin/reth" do + system "cargo", "install", "--bin", "reth", "--profile", "maxperf", *std_cargo_args + end end end