sys_patch.py: Supress ditto logging

This commit is contained in:
Mykola Grymalyuk
2022-05-09 11:44:56 -06:00
parent c3c9d8fef0
commit e9ef25f31e
2 changed files with 5 additions and 3 deletions

View File

@@ -319,7 +319,7 @@ class PatchSysVolume:
if download_result and self.constants.payload_local_binaries_root_path_zip.exists():
print("- Unzipping binaries...")
utilities.process_status(subprocess.run(["ditto", "-V", "-x", "-k", "--sequesterRsrc", "--rsrc", self.constants.payload_local_binaries_root_path_zip, self.constants.payload_path]))
utilities.process_status(subprocess.run(["ditto", "-V", "-x", "-k", "--sequesterRsrc", "--rsrc", self.constants.payload_local_binaries_root_path_zip, self.constants.payload_path], stdout=subprocess.PIPE, stderr=subprocess.STDOUT))
print("- Binaries downloaded to:")
print(self.constants.payload_path)
return self.constants.payload_local_binaries_root_path