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
This commit is contained in:
Mykola Grymalyuk
2023-01-16 13:51:08 -07:00
parent fac1298a6e
commit 037ff0f2c3
2 changed files with 2 additions and 2 deletions

View File

@@ -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()}")