author | Andrea Marchesini <amarchesini@mozilla.com> |
Tue, 06 Feb 2018 11:16:30 +0100 | |
changeset 402513 | a69a458dec3d02a932ca5a2144558e8882b0b636 |
parent 402512 | 021162c1d64e404463b75f7aae0499a15446fd22 |
child 402514 | 95245d5d7560d1a858c0ec80c4da820dfb182063 |
push id | 99583 |
push user | amarchesini@mozilla.com |
push date | Tue, 06 Feb 2018 10:16:54 +0000 |
treeherder | mozilla-inbound@a69a458dec3d [default view] [failures only] |
perfherder | [talos] [build metrics] [platform microbench] (compared to previous push) |
reviewers | whimboo |
bugs | 1435975 |
milestone | 60.0a1 |
first release with | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
last release without | nightly linux32
nightly linux64
nightly mac
nightly win32
nightly win64
|
--- a/testing/geckodriver/mach_commands.py +++ b/testing/geckodriver/mach_commands.py @@ -39,17 +39,17 @@ class GeckoDriover(MachCommandBase): @CommandArgument("--debugger-args", default=None, metavar="params", type=str, group="debugging", help="Flags to pass to the debugger itself; split as the Bourne shell would.") def run(self, binary, params, debug, debugger, debugger_args): try: binpath = self.get_binary_path("geckodriver") except Exception as e: print("It looks like geckodriver isn't built. " - "Add ac_add_options --enable-geckodrver to your mozconfig ", + "Add ac_add_options --enable-geckodriver to your mozconfig ", "and run |mach build| to build it.") print(e) return 1 args = [binpath] if params: args.extend(params)