Skip to content

Commit b4a3b56

Browse files
authored
Rollup merge of #77909 - pietroalbini:fix-build-manifest-path, r=Mark-Simulacrum
bootstrap: set correct path for the build-manifest binary This changes the path of the binary inside the tarball to be: ``` build-manifest-{release}-{target}/build-manifest/bin/build-manifest ``` ...instead of: ``` build-manifest-{release}-{target}/build-manifest/bin/build-manifest/build-manifest ``` r? @Mark-Simulacrum
2 parents b24e25d + 6091538 commit b4a3b56

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bootstrap/dist.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2617,7 +2617,7 @@ impl Step for BuildManifest {
26172617
let image_bin = image.join("bin");
26182618
let _ = fs::remove_dir_all(&image);
26192619
t!(fs::create_dir_all(&image_bin));
2620-
builder.install(&build_manifest, &image_bin.join("build-manifest"), 0o755);
2620+
builder.install(&build_manifest, &image_bin, 0o755);
26212621

26222622
// Prepare the overlay.
26232623
let overlay = tmp.join("build-manifest-overlay");

0 commit comments

Comments
 (0)