Bug 1721586 - Correctly check the processor when setting the apple_silicon flag in mozinfo. r=bhearsum

Differential Revision: https://phabricator.services.mozilla.com/D120467
This commit is contained in:
Jonathan Kew 2021-07-21 15:33:57 +00:00
Родитель ace9eb01d5
Коммит 99ebe15aaf
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -153,7 +153,7 @@ info["apple_silicon"] = False
if (
info["os"] == "mac"
and float(os_version) > 10.15
and processor == "i386"
and processor == "arm64"
and bits == "64bit"
):
info["apple_silicon"] = True