Commit f3e00b33 authored by tonyg's avatar tonyg Committed by Commit bot

[Telemetry] Fix running reference build on linux.

The args were messed up.

BUG=388885
NOTRY=True

Review URL: https://codereview.chromium.org/596983002

Cr-Commit-Position: refs/heads/master@{#296318}
parent c1e1fe3e
......@@ -218,12 +218,12 @@ def FindAllAvailableBrowsers(finder_options):
browsers.append(PossibleDesktopBrowser('system', finder_options,
'google-chrome', None, False,
'/opt/google/chrome'))
linux_reference = os.path.join(reference_build_root, 'chrome_linux',
'chrome')
linux_reference_root = os.path.join(reference_build_root, 'chrome_linux')
linux_reference = os.path.join(linux_reference_root, 'chrome')
if path.IsExecutable(linux_reference):
browsers.append(PossibleDesktopBrowser('reference', finder_options,
'chrome', None, False,
linux_reference))
linux_reference, None, False,
linux_reference_root))
# Win32-specific options.
if sys.platform.startswith('win'):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment