diff --git a/mia-installer/lib.rs b/mia-installer/lib.rs index 8b55091..e1e6e58 100644 --- a/mia-installer/lib.rs +++ b/mia-installer/lib.rs @@ -162,10 +162,10 @@ pub fn install(config: &InstallConfig) -> Result<()> { fn get_mia(tmp: &Path, version: &str, platform: &str) -> Result { if let Some(version) = version.strip_prefix("file:") { - info!("using mia: {}", &version); + info!("using MIA: {}", &version); Ok(PathBuf::from(version)) } else { - info!("using mia: {} ({})", &version, &platform); + info!("downloading MIA: {} ({})", &version, &platform); let tmp = tmp.to_path_buf(); let version = version.to_string(); let platform = platform.to_string(); @@ -205,7 +205,7 @@ async fn fetch_mia(tmp: PathBuf, version: String, platform: String) -> Result