From c20044b43f74a2f5d600b847a3ff22bb4a843a6f Mon Sep 17 00:00:00 2001 From: Shaun Jackman Date: Thu, 21 Feb 2019 21:14:04 -0800 Subject: [PATCH] Fix Hardware::CPU.arm? for aarch64 --- Library/Homebrew/hardware.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/hardware.rb b/Library/Homebrew/hardware.rb index 9f48c4b971..cda94a4913 100644 --- a/Library/Homebrew/hardware.rb +++ b/Library/Homebrew/hardware.rb @@ -61,7 +61,7 @@ module Hardware def type case RUBY_PLATFORM when /x86_64/, /i\d86/ then :intel - when /arm/ then :arm + when /arm/, /aarch64/ then :arm when /ppc\d+/ then :ppc else :dunno end