From 89b42bc5228e7a422375cbdd054b24ea32c80a9d Mon Sep 17 00:00:00 2001 From: Misty De Meo Date: Mon, 22 Jun 2020 12:55:59 -0700 Subject: [PATCH] Install: permit ARM-based Macs --- Library/Homebrew/install.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/install.rb b/Library/Homebrew/install.rb index 18bc534d85..108b51b95c 100644 --- a/Library/Homebrew/install.rb +++ b/Library/Homebrew/install.rb @@ -10,7 +10,7 @@ module Homebrew module_function def check_cpu - return if Hardware::CPU.intel? && Hardware::CPU.is_64_bit? + return if (Hardware::CPU.intel? && Hardware::CPU.is_64_bit?) || Hardware::CPU.arm? message = "Sorry, Homebrew does not support your computer's CPU architecture!" if Hardware::CPU.ppc?