Adjust pythonpath and silence warning

This commit is contained in:
Ali
2022-08-11 01:31:24 +04:00
parent a750799237
commit 18425f44fc
2 changed files with 2 additions and 2 deletions

View File

@@ -107,7 +107,7 @@ def decrypt_codesigning_directory_recursively(source_base_path, destination_base
source_path = source_base_path + '/' + file_name
destination_path = destination_base_path + '/' + file_name
if os.path.isfile(source_path):
os.system('openssl aes-256-cbc -md md5 -k "{password}" -in "{source_path}" -out "{destination_path}" -a -d'.format(
os.system('openssl aes-256-cbc -md md5 -k "{password}" -in "{source_path}" -out "{destination_path}" -a -d 2>/dev/null'.format(
password=password,
source_path=source_path,
destination_path=destination_path