aboutsummaryrefslogtreecommitdiffstats
path: root/python/servo/post_build_commands.py
diff options
context:
space:
mode:
authorJosh Matthews <josh@joshmatthews.net>2021-03-05 19:43:33 -0500
committerGitHub <noreply@github.com>2021-03-05 19:43:33 -0500
commit3b0b8100935500ac984034a84b3121543c95288e (patch)
treeea239aacc6e7c84fe67fb153cf39c63b6826ffa2 /python/servo/post_build_commands.py
parentc220d886c2505bf6dd7860e25364959dfcb32094 (diff)
downloadservo-3b0b8100935500ac984034a84b3121543c95288e.tar.gz
servo-3b0b8100935500ac984034a84b3121543c95288e.zip
Support extra arguments when running with --debug.
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r--python/servo/post_build_commands.py2
1 files changed, 1 insertions, 1 deletions
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