Skip to content

Commit

Permalink
Merge pull request #7815 from MikeMcQuaid/arm_bottles
Browse files Browse the repository at this point in the history
os/mac/utils/bottles: support ARM bottles.
  • Loading branch information
MikeMcQuaid committed Jun 24, 2020
2 parents 176c85d + b39a3ca commit fd72547
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Library/Homebrew/extend/os/mac/utils/bottles.rb
Expand Up @@ -6,7 +6,9 @@ class << self
undef tag

def tag
MacOS.version.to_sym
tag = MacOS.version.to_sym
tag = "#{tag}_arm".to_sym if Hardware::CPU.arm?
tag
end
end

Expand Down

0 comments on commit fd72547

Please sign in to comment.