Skip to content

Commit

Permalink
Properly rebuild rustbooks
Browse files Browse the repository at this point in the history
  • Loading branch information
clubby789 committed Mar 12, 2024
1 parent 5b7343b commit e8cef43
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/bootstrap/src/core/build_steps/doc.rs
Expand Up @@ -145,7 +145,8 @@ impl<P: Step> Step for RustbookSrc<P> {
let rustbook = builder.tool_exe(Tool::Rustbook);
let mut rustbook_cmd = builder.tool_cmd(Tool::Rustbook);

if !builder.config.dry_run() && !(up_to_date(&src, &index) || up_to_date(&rustbook, &index))
if !builder.config.dry_run()
&& (!up_to_date(&src, &index) || !up_to_date(&rustbook, &index))
{
builder.info(&format!("Rustbook ({target}) - {name}"));
let _ = fs::remove_dir_all(&out);
Expand Down

0 comments on commit e8cef43

Please sign in to comment.