From 2b7eb1ca1efb9efd3972c4c48392f09d59e594c7 Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Wed, 3 Dec 2014 15:59:51 -0800 Subject: [PATCH] Fix 'mach browse-doc' to use the right target directory. --- python/servo/post_build_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/post_build_commands.py b/python/servo/post_build_commands.py index 8fdc33eb116..ee9987358ba 100644 --- a/python/servo/post_build_commands.py +++ b/python/servo/post_build_commands.py @@ -110,4 +110,4 @@ class MachCommands(CommandBase): self.doc([]) import webbrowser webbrowser.open("file://" + path.abspath(path.join( - "target", "doc", "servo", "index.html"))) + self.servo_crate(), "target", "doc", "servo", "index.html")))