Skip to content

Commit

Permalink
build: upload windows breakpad symbols (#25000)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarshallOfSound committed Aug 17, 2020
1 parent bac2f46 commit ab6769d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions script/release/uploaders/upload-symbols.py
Expand Up @@ -36,12 +36,13 @@ def is_fs_case_sensitive():

def main():
os.chdir(ELECTRON_DIR)
files = []
if PLATFORM == 'win32':
for pdb in PDB_LIST:
run_symstore(pdb, SYMBOLS_DIR, PRODUCT_NAME)
files = glob.glob(SYMBOLS_DIR + '/*.pdb/*/*.pdb')
else:
files = glob.glob(SYMBOLS_DIR + '/*/*/*.sym')

files += glob.glob(SYMBOLS_DIR + '/*/*/*.sym')

for symbol_file in files:
print("Generating Sentry src bundle for: " + symbol_file)
Expand Down

0 comments on commit ab6769d

Please sign in to comment.