diff options
author | Adrian Utrilla <adrianutrilla@gmail.com> | 2016-04-02 13:49:56 +0200 |
---|---|---|
committer | Adrian Utrilla <adrianutrilla@gmail.com> | 2016-04-02 13:49:56 +0200 |
commit | 7f2c220335e2b2ebb6651bcbf3252c2d2706a9fc (patch) | |
tree | 02667e06f86ead08acb97c186e387daa9fdeee92 /python/servo/post_build_commands.py | |
parent | 0760e56bb66e38a16543ed24385c29fd7c4a034b (diff) | |
download | servo-7f2c220335e2b2ebb6651bcbf3252c2d2706a9fc.tar.gz servo-7f2c220335e2b2ebb6651bcbf3252c2d2706a9fc.zip |
mach run -b now passes additional params to servo
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index c1c3f73dc69..c9891cd7986 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -132,6 +132,7 @@ class PostBuildCommands(CommandBase): return 1 args = args + ['-w', '-b', '--pref', 'dom.mozbrowser.enabled', path.join(browserhtml_path, 'out', 'index.html')] + args = args + params else: args = args + params |