We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f5d2c commit c59660cCopy full SHA for c59660c
src/bootstrap/src/core/build_steps/doc.rs
@@ -445,8 +445,7 @@ impl Step for Releases {
445
|| !up_to_date(&footer, &html)
446
|| !up_to_date(&favicon, &html)
447
|| !up_to_date(&full_toc, &html)
448
- || !(builder.config.dry_run() || up_to_date(&version_info, &html))
449
- || !(builder.config.dry_run() || up_to_date(&rustdoc, &html))
+ || !(builder.config.dry_run() || up_to_date(&version_info, &html) || up_to_date(&rustdoc, &html))
450
{
451
let mut tmpfile = t!(fs::File::create(&tmppath));
452
t!(tmpfile.write_all(b"% Rust Release Notes\n\n"));
0 commit comments