Skip to content

Instantly share code, notes, and snippets.

View mikecole20's full-sized avatar

Mike Cole mikecole20

View GitHub Profile
#run this script on yout dSYMS folder
import subprocess
app_name = "your app name"
new_rellic_key = "new rellic key (same as app)"
all_dsyms = subprocess.Popen('ls', shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
for line in all_dsyms.stdout.readlines():
dsym = line.rstrip('\n')
zip_file = dsym+'.zip'