From 8303f5b9263f3dba24cd79202472097f32864b2b Mon Sep 17 00:00:00 2001 From: Simon Sapin Date: Tue, 18 Jul 2017 23:05:11 +0200 Subject: Update to cargo 0.21.0-nightly (eb6cf012a 2017-07-02) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cargo binaries are now produced on Rust’s CI, not Cargo’s. Remove cargo-commit-hash and find Cargo based on rust-commit-hash. --- python/servo/command_base.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'python/servo/command_base.py') diff --git a/python/servo/command_base.py b/python/servo/command_base.py index e8bad0a742f..abaa643fbb3 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -326,9 +326,9 @@ class CommandBase(object): def cargo_build_id(self): if self._cargo_build_id is None: - filename = path.join(self.context.topdir, "cargo-commit-hash") + filename = path.join(self.context.topdir, "rust-commit-hash") with open(filename) as f: - self._cargo_build_id = f.read().strip() + self._cargo_build_id = "rust-" + f.read().strip() return self._cargo_build_id def get_top_dir(self): -- cgit v1.2.3