Update dsym path

This commit is contained in:
Ali 2023-08-27 17:56:29 +04:00
parent 863c4afb91
commit bae44ca176

View File

@ -622,7 +622,7 @@ def build(bazel, arguments):
sys.exit(1)
shutil.copyfile(ipa_paths[0], artifacts_path + '/Telegram.ipa')
dsym_paths = glob.glob('bazel-out/applebin_ios-ios_arm*-opt-ST-*/bin/Telegram/*.dSYM')
dsym_paths = glob.glob('bazel-bin/Telegram/**/.dSYM')
for dsym_path in dsym_paths:
file_name = os.path.basename(dsym_path)
shutil.copytree(dsym_path, artifacts_path + '/DSYMs/{}'.format(file_name))