diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2017-07-21 13:57:07 +0200 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2017-07-21 13:57:07 +0200 |
commit | d0a2f7bcbe7ebf8364ad03b9e1493dd2dee98359 (patch) | |
tree | ed556eee33d54095374e340774e065a2dd8dff0f /python/servo/devenv_commands.py | |
parent | 06b409ad603688658815fd1a71a02fd03cd5094a (diff) | |
download | servo-d0a2f7bcbe7ebf8364ad03b9e1493dd2dee98359.tar.gz servo-d0a2f7bcbe7ebf8364ad03b9e1493dd2dee98359.zip |
Fix bootstrapping during `mach rustup` without system cargo
https://travis-ci.org/servo/servo-with-rust-nightly/builds/255611949#L989
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 e66fa7b457d..dae6a38b0ba 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -284,6 +284,9 @@ class MachCommands(CommandBase): # Reset self.config["tools"]["rust-root"] self._rust_version = None self.set_use_stable_rust(False) + + # Reset self.config["tools"]["cargo-root"] + self._cargo_build_id = None self.set_cargo_root() self.fetch() |