Skip to content
This repository has been archived by the owner on May 2, 2024. It is now read-only.

Commit

Permalink
Fix regression in summary printing
Browse files Browse the repository at this point in the history
  • Loading branch information
valentinegb committed Sep 4, 2023
1 parent b1de6a5 commit d4b4cc4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -89,14 +89,14 @@ async fn try_main() -> Result<()> {
}
}

multi_progress.println(format!(
println!(
"{} installed, {} updated, {} already installed, {} removed, and {} failed",
style(installed).green(),
style(updated).cyan(),
style(already_installed).bold(),
style(removed_mods).yellow(),
style(failed).red(),
))?;
);

Ok(())
}
Expand Down

0 comments on commit d4b4cc4

Please sign in to comment.