From 037ff0f2c31e6c9a631117f9b016ec9ffcd6e6bf Mon Sep 17 00:00:00 2001 From: Mykola Grymalyuk Date: Mon, 16 Jan 2023 13:51:08 -0700 Subject: [PATCH] sys_patch_helpers.py: Avoid saying RSRRepair RSRRepair is used for syncing Boot and System Kernel Collections, users misintepreted this as supporting RSR on all models --- resources/sys_patch/sys_patch_helpers.py | 2 +- resources/utilities.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/sys_patch/sys_patch_helpers.py b/resources/sys_patch/sys_patch_helpers.py index 42301ace2..5c127ed4f 100644 --- a/resources/sys_patch/sys_patch_helpers.py +++ b/resources/sys_patch/sys_patch_helpers.py @@ -200,7 +200,7 @@ class sys_patch_helpers: if self.constants.detected_os < os_data.os_data.big_sur: return - print("- Installing RSRRepair userspace utility") + print("- Installing Kernel Collection syncing utility") result = utilities.elevated([self.constants.rsrrepair_userspace_path, "--install"], stdout=subprocess.PIPE, stderr=subprocess.STDOUT) if result.returncode != 0: print(f" - Failed to install RSRRepair: {result.stdout.decode()}") \ No newline at end of file diff --git a/resources/utilities.py b/resources/utilities.py index 6f64a9ded..f2a63eb06 100644 --- a/resources/utilities.py +++ b/resources/utilities.py @@ -40,7 +40,7 @@ def string_to_hex(input_string): def process_status(process_result): if process_result.returncode != 0: print(f"Process failed with exit code {process_result.returncode}") - print(f"Please file an issue on our Github") + print(f"Please report the issue on the Discord server") raise Exception(f"Process result: \n{process_result.stdout.decode()}")