From 490436300d09f03b4076f24dfaf1e6e7108f8e0c Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Tue, 26 Nov 2024 14:02:36 +0700 Subject: [PATCH] Use the last found kext --- Scripts/kext_maestro.py | 1 - 1 file changed, 1 deletion(-) diff --git a/Scripts/kext_maestro.py b/Scripts/kext_maestro.py index d1ccd56..97d5168 100644 --- a/Scripts/kext_maestro.py +++ b/Scripts/kext_maestro.py @@ -289,7 +289,6 @@ class KextMaestro: if os.path.splitext(os.path.basename(kext_path))[0] in kext.name: source_kext_path = os.path.join(self.ock_files_dir, kext_path) destination_kext_path = os.path.join(kexts_directory, os.path.basename(kext_path)) - break if os.path.exists(source_kext_path): shutil.copytree(source_kext_path, destination_kext_path, dirs_exist_ok=True)