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:
parent
28ae68d66c
commit
44ca6e0818
1 changed files with 2 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue