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:
bors-servo 2016-04-02 18:01:13 +05:30
commit 5e73e1015b

View file

@ -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