sys_patch_dict: Fix Safari 16 support for macOS Monterey

This commit is contained in:
Mykola Grymalyuk
2022-09-15 21:18:00 -06:00
parent 5565a3e67e
commit 101f1197bc
4 changed files with 18 additions and 1 deletions

View File

@@ -296,6 +296,10 @@ class PatchSysVolume:
# .kexts and .apps are deleted and replaced
file_name_str = str(file_name)
if not Path(destination_folder).exists():
print(f" - Skipping {file_name}, cannot locate {source_folder}")
return
if file_name_str.endswith(".framework"):
# merge with rsync
print(f" - Installing: {file_name}")