File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -545,6 +545,8 @@ step-maybe-generate-breakpad-symbols: &step-maybe-generate-breakpad-symbols
545
545
if [ "$GENERATE_SYMBOLS" == "true" ]; then
546
546
cd src
547
547
ninja -C out/Default electron:electron_symbols
548
+ cd out/Default/breakpad_symbols
549
+ find . -name \*.sym -print0 | xargs -0 npx @sentry/cli@1.51.1 difutil bundle-sources
548
550
fi
549
551
550
552
step-maybe-zip-symbols : &step-maybe-zip-symbols
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ def main():
30
30
run_symstore (pdb , SYMBOLS_DIR , PRODUCT_NAME )
31
31
files = glob .glob (SYMBOLS_DIR + '/*.pdb/*/*.pdb' )
32
32
else :
33
- files = glob .glob (SYMBOLS_DIR + '/*/*/*.sym' )
33
+ files = glob .glob (SYMBOLS_DIR + '/*/*/*.sym' ) + glob . glob ( SYMBOLS_DIR + '/*/*/*.src.zip' )
34
34
35
35
# The file upload needs to be atom-shell/symbols/:symbol_name/:hash/:symbol
36
36
os .chdir (SYMBOLS_DIR )
You can’t perform that action at this time.
0 commit comments