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

Fixes #26961.

Notes: Add Electron DLLs like libGLESv2.dll to symbol server
This commit is contained in:
Biru Mohanathas 2020-12-11 22:34:03 +02:00 committed by GitHub
parent 28ae68d66c
commit 44ca6e0818
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"