We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 62b280a commit 1d0b1e3Copy full SHA for 1d0b1e3
src/bootstrap/check.rs
@@ -285,6 +285,16 @@ pub fn docs(build: &Build, compiler: &Compiler) {
285
continue
286
}
287
288
+ // The nostarch directory in the book is for no starch, and so isn't guaranteed to build.
289
+ // we don't care if it doesn't build, so skip it.
290
+ use std::ffi::OsStr;
291
+ let path: &OsStr = p.as_ref();
292
+ if let Some(path) = path.to_str() {
293
+ if path.contains("nostarch") {
294
+ continue;
295
+ }
296
297
+
298
println!("doc tests for: {}", p.display());
299
markdown_test(build, compiler, &p);
300
0 commit comments