Auto merge of #38439 - alexcrichton:fix-nightlies, r=brson
rustbuild: Create directories in mingw dist Previously we accidentally relied on the mingw dist step running last, but the step just needed to ensure the directories were created.
This commit is contained in:
commit
32d02bbafa
1 changed files with 1 additions and 0 deletions
|
|
@ -97,6 +97,7 @@ pub fn mingw(build: &Build, host: &str) {
|
|||
let name = format!("rust-mingw-{}", package_vers(build));
|
||||
let image = tmpdir(build).join(format!("{}-{}-image", name, host));
|
||||
let _ = fs::remove_dir_all(&image);
|
||||
t!(fs::create_dir_all(&image));
|
||||
|
||||
// The first argument to the script is a "temporary directory" which is just
|
||||
// thrown away (this contains the runtime DLLs included in the rustc package
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue