From 76879ca17225a1cb8c176d770a91e180e03374d6 Mon Sep 17 00:00:00 2001 From: Jake Barnby Date: Mon, 28 Aug 2023 15:19:48 -0400 Subject: [PATCH] Fix macOS check for arm64 --- src/System/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/System/System.php b/src/System/System.php index 3fef281..44aabf3 100644 --- a/src/System/System.php +++ b/src/System/System.php @@ -18,7 +18,7 @@ class System private const RegExX86 = '/(x86*|i386|i686)/'; - private const RegexARM64 = '/(aarch64)/'; + private const RegexARM64 = '/(aarch64|arm64)/'; private const RegexARMV7 = '/(armv7)/';