We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e766f60 commit dfbb946Copy full SHA for dfbb946
src/bootstrap/bin/rustdoc.rs
@@ -57,6 +57,10 @@ fn main() {
57
// This "unstable-options" can be removed when `--crate-version` is stabilized
58
cmd.arg("-Z").arg("unstable-options")
59
.arg("--crate-version").arg(version);
60
+
61
+ // While we can assume that `-Z unstable-options` is set, let's also force rustdoc to panic
62
+ // if pulldown rendering differences are found
63
+ cmd.arg("--deny-render-differences");
64
}
65
66
std::process::exit(match cmd.status() {
0 commit comments