Skip to content

Commit

Permalink
Create the bin dir
Browse files Browse the repository at this point in the history
  • Loading branch information
wesleywiser committed May 23, 2017
1 parent 173f693 commit 7eebabe
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/bootstrap/dist.rs
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,7 @@ fn make_win_dist(rust_root: &Path, plat_root: &Path, target_triple: &str, build:

//Copy runtime dlls next to rustc.exe
let dist_bin_dir = rust_root.join("bin/");
fs::create_dir_all(&dist_bin_dir).expect("creating dist_bin_dir failed");
for src in rustc_dlls {
copy_to_folder(&src, &dist_bin_dir);
}
Expand Down

0 comments on commit 7eebabe

Please sign in to comment.