From 628f9c896294fdf04d9a153817bf8443594532dd Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Sat, 16 Sep 2017 12:46:10 -0500 Subject: [PATCH] Fix BreakpadSymbols script for 64-bit builds. --- support/buildbot/BreakpadSymbols | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/buildbot/BreakpadSymbols b/support/buildbot/BreakpadSymbols index 7d5ab39..0a7c11b 100644 --- a/support/buildbot/BreakpadSymbols +++ b/support/buildbot/BreakpadSymbols @@ -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