mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-06 18:08:36 +00:00
Fix BreakpadSymbols script for 64-bit builds.
This commit is contained in:
parent
e27f8fba1a
commit
870e118150
@ -22,7 +22,7 @@ for cxx_task in cxx_tasks:
|
||||
elif builder.target.platform == 'windows':
|
||||
argv = ['dump_syms.exe', debug_file]
|
||||
|
||||
base_file = os.path.splitext(os.path.basename(debug_file))[0]
|
||||
base_file = os.path.split(os.path.dirname(debug_file))[1]
|
||||
symbol_file = base_file + '.breakpad'
|
||||
|
||||
argv = [sys.executable, UPLOAD_SCRIPT, symbol_file] + argv
|
||||
|
||||
Loading…
Reference in New Issue
Block a user