mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +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
|
command = rustCommand
|
||||||
|
|
||||||
# Prepend the debugger args.
|
# Prepend the debugger args.
|
||||||
args = ([command] + self.debuggerInfo.args
|
args = ([command] + self.debuggerInfo.args + ["--"]
|
||||||
+ args + params)
|
+ args + params)
|
||||||
else:
|
else:
|
||||||
args = args + params
|
args = args + params
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue