Skip to content

Commit

Permalink
Update format
Browse files Browse the repository at this point in the history
  • Loading branch information
odarriba committed Feb 13, 2025
1 parent e56cb63 commit 81a15e8
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions lib/bun.ex
Original file line number Diff line number Diff line change
Expand Up @@ -257,11 +257,9 @@ defmodule Bun do
_ -> raise "bun is not available for architecture: #{arch_str}"
end

if Enum.any?(other, &(&1 == "musl")) do
target <> "-musl"
else
target
end
if Enum.any?(other, &(&1 == "musl")),
do: target <> "-musl",
else: target
end
end

Expand Down

0 comments on commit 81a15e8

Please sign in to comment.