From 4a4c8a4e0520f8579e9950619d08246276a6e194 Mon Sep 17 00:00:00 2001 From: Francisco Gouveia Date: Tue, 26 May 2026 13:57:59 +0100 Subject: [PATCH] feat(toolchain): make the "installed" text of a toolchain install green --- src/dist/download.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dist/download.rs b/src/dist/download.rs index 04456692e5..a11931702b 100644 --- a/src/dist/download.rs +++ b/src/dist/download.rs @@ -305,6 +305,7 @@ impl<'a> DownloadCfg<'a> { .progress_chars("## "), ); progress.set_message(component_name); + progress.set_prefix("installed"); self.tracker.multi_progress_bars.add(progress.clone()); DownloadStatus { @@ -432,7 +433,7 @@ impl DownloadStatus { pub(crate) fn installed(&self) { self.progress.set_style(DownloadStatus::progress_style( self.name_width, - "installed {total_bytes:>31}", + "{prefix:.green.bold} {total_bytes:>31}", )); self.progress.finish(); }