diff options
Diffstat (limited to 'python/servo/devenv_commands.py')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 266d2cfd6a5..78f6e2ce392 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -206,7 +206,7 @@ class MachCommands(CommandBase): filename = path.join(self.context.topdir, "rust-toolchain") with open(filename, "w") as f: f.write(toolchain + "\n") - return call(["rustup" + BIN_SUFFIX, "install", toolchain]) + return call(["rustup" + BIN_SUFFIX, "component", "add", "rustc-dev"]) @Command('fetch', description='Fetch Rust, Cargo and Cargo dependencies', |