diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-10-01 14:13:05 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-10-01 14:13:05 -0500 |
commit | 45cc847a005e1722b888ba2ea20f4ab80b70af9f (patch) | |
tree | b0504d3e62f20108c80aa28d3f4dcb81f394fe5c /python | |
parent | 36222cf543731af71b22d5fb8e3f17c6c51af895 (diff) | |
parent | eb27bcff7ebef4bacdc3d283e63b6aa3763e1e72 (diff) | |
download | servo-45cc847a005e1722b888ba2ea20f4ab80b70af9f.tar.gz servo-45cc847a005e1722b888ba2ea20f4ab80b70af9f.zip |
Auto merge of #13537 - GuillaumeGomez:mach_update, r=Wafflespeanut
Ensure cargo is up to date before running update crate command
Fixes #13526
<!-- Reviewable:start -->
---
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13537)
<!-- Reviewable:end -->
Diffstat (limited to 'python')
-rw-r--r-- | python/servo/devenv_commands.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/python/servo/devenv_commands.py b/python/servo/devenv_commands.py index 2fc4a08e434..5a41b8b1b37 100644 --- a/python/servo/devenv_commands.py +++ b/python/servo/devenv_commands.py @@ -87,6 +87,8 @@ class MachCommands(CommandBase): print("flag or update all packages with --all-packages (-a) flag") sys.exit(1) + self.ensure_bootstrapped() + for cargo_path in CARGO_PATHS: with cd(cargo_path): print(cargo_path) |