From f43c28535b298d55f865dfe2f7b3b7f626e0cc48 Mon Sep 17 00:00:00 2001 From: Dzmitry Malyshau Date: Thu, 17 Nov 2016 15:18:23 -0500 Subject: [PATCH] Updated cargo paths for the python script Related to #14172 Needed this for `./mach cargo-update -p webrender` to work properly when replacing with a local copy --- python/servo/devenv_commands.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 3bc99a55a7f..665d8f3c798 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -22,9 +22,9 @@ from mach.decorators import ( from servo.command_base import CommandBase, cd, call CARGO_PATHS = [ - path.join('components', 'servo'), path.join('ports', 'cef'), path.join('ports', 'geckolib'), + path.join('ports', 'servo'), ]