Skip to content

Commit

Permalink
bootstrap: set correct path for the build-manifest binary
Browse files Browse the repository at this point in the history
  • Loading branch information
pietroalbini committed Oct 20, 2020
1 parent 0c294e2 commit 8918415
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 @@ -2617,7 +2617,7 @@ impl Step for BuildManifest {
let image_bin = image.join("bin");
let _ = fs::remove_dir_all(&image);
t!(fs::create_dir_all(&image_bin));
builder.install(&build_manifest, &image_bin.join("build-manifest"), 0o755);
builder.install(&build_manifest, &image_bin, 0o755);

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

0 comments on commit 8918415

Please sign in to comment.