From d8258a73fdd52bb2675eb6b8c5d4876a46ef8135 Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk <48863253+khronokernel@users.noreply.github.com> Date: Wed, 19 May 2021 13:02:19 -0600 Subject: [PATCH] Update SysPatch.py --- Resources/SysPatch.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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"