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

@ -55,7 +55,7 @@ experimental_i:
except: except:
- tags - tags
script: script:
- python3 build-system/Make/Make.py remote-build --darwinContainersHost="http://host.docker.internal:8650" --cacheHost="grpc://host.docker.internal:9092" --configurationPath=build-system/appstore-configuration.json --gitCodesigningRepository="$TELEGRAM_GIT_CODESIGNING_REPOSITORY" --gitCodesigningType=appstore --configuration=release_arm64 - PYTHONPATH="$PYTHONPATH:/darwin-containers" python3 build-system/Make/Make.py remote-build --darwinContainersHost="http://host.docker.internal:8650" --cacheHost="grpc://host.docker.internal:9092" --configurationPath=build-system/appstore-configuration.json --gitCodesigningRepository="$TELEGRAM_GIT_CODESIGNING_REPOSITORY" --gitCodesigningType=appstore --configuration=release_arm64
environment: environment:
name: experimental name: experimental
artifacts: artifacts:

View File

@ -107,7 +107,7 @@ def decrypt_codesigning_directory_recursively(source_base_path, destination_base
source_path = source_base_path + '/' + file_name source_path = source_base_path + '/' + file_name
destination_path = destination_base_path + '/' + file_name destination_path = destination_base_path + '/' + file_name
if os.path.isfile(source_path): 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, password=password,
source_path=source_path, source_path=source_path,
destination_path=destination_path destination_path=destination_path