We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 29f5d2c commit a3d9003Copy full SHA for a3d9003
src/bootstrap/src/core/build_steps/doc.rs
@@ -445,8 +445,9 @@ 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)
450
+ || up_to_date(&rustdoc, &html))
451
{
452
let mut tmpfile = t!(fs::File::create(&tmppath));
453
t!(tmpfile.write_all(b"% Rust Release Notes\n\n"));
0 commit comments