Skip to content

Commit b8381a8

Browse files
committed
Fix typo
1 parent c47e21d commit b8381a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Resources/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ def build_efi(self):
9696
wifi_devices = plistlib.loads(subprocess.run(f"ioreg -c IOPCIDevice -r -d2 -a".split(), stdout=subprocess.PIPE).stdout.decode().strip().encode())
9797
wifi_devices = [i for i in wifi_devices if i["vendor-id"] == binascii.unhexlify("E4140000") and i["class-code"] == binascii.unhexlify("00800200")]
9898
wifi_devices = wifi_devices[0]
99-
if (self.constants.custom_model) == "None" & (self.hexswap(binascii.hexlify(wifi_devices["vendor-id"]).decode()[:4]) in ModelArray.nativeWifi):
99+
if (self.constants.custom_model == "None") & (self.hexswap(binascii.hexlify(wifi_devices["vendor-id"]).decode()[:4]) in ModelArray.nativeWifi):
100100
print("- Skipping wifi patches")
101101
else:
102102
if self.model in ModelArray.WifiAtheros:

0 commit comments

Comments
 (0)