From 3b0b8100935500ac984034a84b3121543c95288e Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Fri, 5 Mar 2021 19:43:33 -0500 Subject: [PATCH] Support extra arguments when running with --debug. --- python/servo/post_build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index daf2a9815ac..81376a78313 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -162,7 +162,7 @@ class PostBuildCommands(CommandBase): command = rustCommand # Prepend the debugger args. - args = ([command] + self.debuggerInfo.args + args = ([command] + self.debuggerInfo.args + ["--"] + args + params) else: args = args + params