We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 38a959a commit 860c6abCopy full SHA for 860c6ab
src/bootstrap/check.rs
@@ -242,7 +242,9 @@ pub fn docs(build: &Build, compiler: &Compiler) {
242
pub fn error_index(build: &Build, compiler: &Compiler) {
243
println!("Testing error-index stage{}", compiler.stage);
244
245
- let output = testdir(build, compiler.host).join("error-index.md");
+ let dir = testdir(build, compiler.host);
246
+ t!(fs::create_dir_all(&dir));
247
+ let output = dir.join("error-index.md");
248
build.run(build.tool_cmd(compiler, "error_index_generator")
249
.arg("markdown")
250
.arg(&output)
0 commit comments