os/mac/utils/bottles: support ARM bottles.

This will be eventually needed for Big Sur.
This commit is contained in:
Mike McQuaid 2020-06-24 12:00:56 +01:00
parent 176c85d42c
commit b39a3ca02f
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70

View File

@ -6,7 +6,9 @@ module Utils
undef tag undef tag
def tag def tag
MacOS.version.to_sym tag = MacOS.version.to_sym
tag = "#{tag}_arm".to_sym if Hardware::CPU.arm?
tag
end end
end end