From 6eb367e90598f0046ba77bae461ce1c268b16190 Mon Sep 17 00:00:00 2001 From: Coder206 Date: Fri, 14 Dec 2018 21:50:35 +0000 Subject: [PATCH] Update userscripts Option Fixes #22462 --- etc/ci/performance/runner.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/ci/performance/runner.py b/etc/ci/performance/runner.py index dd93becbe3f..226bb506fa2 100644 --- a/etc/ci/performance/runner.py +++ b/etc/ci/performance/runner.py @@ -75,7 +75,7 @@ def run_servo_test(testcase, url, date, timeout, is_async): ua_script_path = "{}/user-agent-js".format(os.getcwd()) command = [ "../../../target/release/servo", url, - "--userscripts", ua_script_path, + "--userscripts=" + ua_script_path, "--headless", "-x", "-o", "output.png" ]