From 4fe9679660f77ba8b58273ed27817c1eba0bd57d Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 30 May 2022 11:29:27 -0600 Subject: [PATCH] sys_patch_auto.py: Avoid prompting config changes on hackintoshes --- resources/sys_patch_auto.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/resources/sys_patch_auto.py b/resources/sys_patch_auto.py index b5f1393ae..2341c611a 100644 --- a/resources/sys_patch_auto.py +++ b/resources/sys_patch_auto.py @@ -115,6 +115,8 @@ class AutomaticSysPatch: should_notify = global_settings.global_settings().read_property("AutoPatch_Notify_Mismatched_Disks") if should_notify is False: print("- Skipping due to user preference") + elif settings.host_is_hackintosh is True: + print("- Skipping due to hackintosh") else: if settings.booted_oc_disk: root_disk = settings.booted_oc_disk.strip("disk")