in Formula/bicep.rb [18:28]
def install
case
when OS.mac? && Hardware::CPU.intel?
bin.install "bicep-osx-x64" => "bicep"
when OS.mac? && Hardware::CPU.arm?
bin.install "bicep-osx-arm64" => "bicep"
else
odie "Unexpected platform!"
end
end