1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-26 19:54:14 +01:00

Fix BreakpadSymbols script for 64-bit builds.

This commit is contained in:
Scott Ehlert 2017-09-16 12:46:10 -05:00
parent 1486519e69
commit 628f9c8962

View File

@ -20,7 +20,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