mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Auto merge of #28243 - servo:jdm-patch-46, r=jdm
Support extra arguments when running with --debug. This allows things like `./mach run -z -x tests/html/about-mozilla.html --debug` to work as expected.
This commit is contained in:
commit
4a46a476d7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue