mirror of
https://github.com/servo/servo.git
synced 2025-08-14 01:45:33 +01:00
Auto merge of #10363 - autrilla:issue#10357, r=emilio
Issue #10357: mach run -b now passes additional params to servo Previously `./mach run` with the `-b` flag set ignored everything passed after the `--`, so for example when running `./mach run -d -b -- --help`, `--help` was not passed to servo - it is now. <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/10363) <!-- Reviewable:end -->
This commit is contained in:
commit
5e73e1015b
1 changed files with 1 additions and 0 deletions
|
@ -132,6 +132,7 @@ class PostBuildCommands(CommandBase):
|
||||||
return 1
|
return 1
|
||||||
args = args + ['-w', '-b', '--pref', 'dom.mozbrowser.enabled',
|
args = args + ['-w', '-b', '--pref', 'dom.mozbrowser.enabled',
|
||||||
path.join(browserhtml_path, 'out', 'index.html')]
|
path.join(browserhtml_path, 'out', 'index.html')]
|
||||||
|
args = args + params
|
||||||
else:
|
else:
|
||||||
args = args + params
|
args = args + params
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue