Browse Source

fix: Upload all *.dll.pdb to symbol server (#26965)

Fixes #26961.

Notes: Add Electron DLLs like libGLESv2.dll to symbol server

Co-authored-by: Biru Mohanathas <[email protected]>
trop[bot] 4 years ago
parent
commit
ca7528a2d0
1 changed files with 2 additions and 0 deletions
  1. 2 0
      script/release/uploaders/upload-symbols.py

+ 2 - 0
script/release/uploaders/upload-symbols.py

@@ -29,6 +29,8 @@ PDB_LIST = [
   os.path.join(RELEASE_DIR, '{0}.exe.pdb'.format(PROJECT_NAME))
 ]
 
+PDB_LIST += glob.glob(os.path.join(RELEASE_DIR, '*.dll.pdb'))
+
 NPX_CMD = "npx"
 if sys.platform == "win32":
     NPX_CMD += ".cmd"