Bug 1351031 - Update rust-build container. r=mshal

Update rust-build docker image source to v0.4.3. This includes
some recent to how verification and taskcluster work to maintain
working scripts, and some changes for the newer cargo-building-
cargo build system, which aren't sufficient for bootstrapping.

MozReview-Commit-ID: 4IdbKVvco8m
This commit is contained in:
Ralph Giles
2017-03-27 14:02:44 -07:00
parent cd88202a83
commit bcdeb05d35
9 changed files with 70 additions and 46 deletions

View File

@@ -19,8 +19,7 @@ def load_manifest(path):
def save_manifest(manifest, path):
with open(path, 'w') as f:
json.dump(manifest, f,
indent=0, separators=(',', ': '))
json.dump(manifest, f, indent=2, separators=(',', ': '))
f.write('\n')