Skip to content

Commit

Permalink
Auto merge of #40443 - alexcrichton:fix-nightlies-again, r=alexcrichton
Browse files Browse the repository at this point in the history
rustbuild: Fix a bug when manifesting with Cargo

The wrong Cargo version was passed down so it ended up panicking the
build-manifest script as it couldn't find the right tarball.
  • Loading branch information
bors committed Mar 11, 2017
2 parents 4b1dfbd + 8db566e commit e4eb964
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -944,7 +944,7 @@ pub fn hash_and_sign(build: &Build) {
cmd.arg(distdir(build));
cmd.arg(today.trim());
cmd.arg(build.rust_package_vers());
cmd.arg(build.cargo_info.version(build, &build.cargo_release_num()));
cmd.arg(build.package_vers(&build.cargo_release_num()));
cmd.arg(addr);

t!(fs::create_dir_all(distdir(build)));
Expand Down

0 comments on commit e4eb964

Please sign in to comment.