diff options
author | Josh Matthews <josh@joshmatthews.net> | 2021-03-05 19:43:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-05 19:43:33 -0500 |
commit | 3b0b8100935500ac984034a84b3121543c95288e (patch) | |
tree | ea239aacc6e7c84fe67fb153cf39c63b6826ffa2 /python/servo/post_build_commands.py | |
parent | c220d886c2505bf6dd7860e25364959dfcb32094 (diff) | |
download | servo-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.py | 2 |
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 |