diff --git a/Resources/SysPatch.py b/Resources/SysPatch.py index 4a7436121..7c592e665 100644 --- a/Resources/SysPatch.py +++ b/Resources/SysPatch.py @@ -26,7 +26,9 @@ class PatchSysVolume: # TODO: Put this in a better place if self.constants.recovery_status is True: - self.mount_location = self.constants.payload_mnt1_path + if not Path("/Volumes/mnt1").exists: + Path("/Volumes/mnt1").mkdir() + self.mount_location = "/Volumes/mnt1" else: self.mount_location = "/System/Volumes/Update/mnt1" self.mount_extensions = f"{self.mount_location}/System/Library/Extensions"