diff options
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 9852558bce6..2f323010a18 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -40,6 +40,9 @@ class MachCommands(CommandBase): if check: params = ['check'] + params + if "--manifest-path" not in params: + params += ["--manifest-path", self.ports_servo_manifest()] + build_start = time() status = self.call_rustup_run(["cargo"] + params, env=env) elapsed = time() - build_start |