diff options
author | Ravi Shankar <wafflespeanut@gmail.com> | 2017-01-03 13:05:13 +0530 |
---|---|---|
committer | Ravi Shankar <wafflespeanut@gmail.com> | 2017-01-03 13:05:13 +0530 |
commit | b061ada8369af8cf1bad050c44550a1c8871caaa (patch) | |
tree | c6f0f118c9731f547f6d11d0a48cfd638c3840b1 /python/servo/post_build_commands.py | |
parent | 987b640c54c86c020dc4948be2a41fd58e8ade02 (diff) | |
download | servo-b061ada8369af8cf1bad050c44550a1c8871caaa.tar.gz servo-b061ada8369af8cf1bad050c44550a1c8871caaa.zip |
Fix browserhtml path
Diffstat (limited to 'python/servo/post_build_commands.py')
-rw-r--r-- | python/servo/post_build_commands.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 0a8a553bae7..145b2eecbad 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -98,7 +98,7 @@ class PostBuildCommands(CommandBase): args = [self.get_binary_path(release, dev)] if browserhtml: - browserhtml_path = get_browserhtml_path('browserhtml', args[0]) + browserhtml_path = get_browserhtml_path(args[0]) if is_macosx(): # Enable borderless on OSX args = args + ['-b'] @@ -109,7 +109,7 @@ class PostBuildCommands(CommandBase): args = args + ['--pref', 'dom.mozbrowser.enabled', '--pref', 'dom.forcetouch.enabled', '--pref', 'shell.builtin-key-shortcuts.enabled=false', - path.join(browserhtml_path, 'out', 'index.html')] + path.join(browserhtml_path, 'index.html')] if headless: set_osmesa_env(args[0], env) |