From 870e1181506c5d18751a5b538b46b284c3376774 Mon Sep 17 00:00:00 2001 From: Scott Ehlert Date: Wed, 20 Dec 2017 02:07:30 -0600 Subject: [PATCH] Fix BreakpadSymbols script for 64-bit builds. --- tools/buildbot/BreakpadSymbols | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/buildbot/BreakpadSymbols b/tools/buildbot/BreakpadSymbols index 0959ac64..1e4af3b4 100644 --- a/tools/buildbot/BreakpadSymbols +++ b/tools/buildbot/BreakpadSymbols @@ -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