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(); }