We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02bcfe9 commit 07a0295Copy full SHA for 07a0295
src/toolchains.rs
@@ -12,6 +12,7 @@ use std::path::{Path, PathBuf};
12
use std::process::{self, Command, Stdio};
13
14
use chrono::{Date, naive, Utc};
15
+use colored::*;
16
use dialoguer::Select;
17
use failure::{Fail, Error};
18
use flate2::read::GzDecoder;
@@ -139,7 +140,8 @@ impl Toolchain {
139
140
client: &Client,
141
dl_params: &DownloadParams,
142
) -> Result<(), InstallError> {
- eprintln!("installing {}", self);
143
+ let tc_stdstream_str = format!("{}", self);
144
+ eprintln!("installing {}", tc_stdstream_str.green());
145
let tmpdir = TempDir::new_in(&dl_params.tmp_dir, &self.rustup_name())
146
.map_err(InstallError::TempDir)?;
147
let dest = dl_params.install_dir.join(self.rustup_name());
0 commit comments