Skip to content

Commit

Permalink
Auto merge of rust-lang#80397 - Mark-Simulacrum:fix-bare-tarball, r=p…
Browse files Browse the repository at this point in the history
…ietroalbini

Use package name for top-level directory in bare tarballs

This fixes a bug introduced by rust-lang#79788.

r? `@pietroalbini`
  • Loading branch information
bors committed Dec 28, 2020
2 parents 6c523a7 + fe52a65 commit aef92d4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/bootstrap/tarball.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,10 +241,16 @@ impl<'a> Tarball<'a> {
}

pub(crate) fn bare(self) -> PathBuf {
// Bare tarballs should have the top level directory match the package
// name, not "image". We rename the image directory just before passing
// into rust-installer.
let dest = self.temp_dir.join(self.package_name());
t!(std::fs::rename(&self.image_dir, &dest));

self.run(|this, cmd| {
cmd.arg("tarball")
.arg("--input")
.arg(&this.image_dir)
.arg(&dest)
.arg("--output")
.arg(crate::dist::distdir(this.builder).join(this.package_name()));
})
Expand Down

0 comments on commit aef92d4

Please sign in to comment.