From 3f5db6112644ec934f818b0ed929d6b2f869482e 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..84057feba1 100644 --- a/src/dist/download.rs +++ b/src/dist/download.rs @@ -430,9 +430,10 @@ impl DownloadStatus { } pub(crate) fn installed(&self) { + self.progress.set_prefix("installed"); self.progress.set_style(DownloadStatus::progress_style( self.name_width, - "installed {total_bytes:>31}", + "{prefix:.green.bold} {total_bytes:>31}", )); self.progress.finish(); }