We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d87eb5 commit c24ee6aCopy full SHA for c24ee6a
crates/volta-core/src/tool/mod.rs
@@ -31,7 +31,11 @@ fn debug_already_fetched<T: Display + Sized>(tool: T) {
31
32
#[inline]
33
fn info_installed<T: Display + Sized>(tool: T) {
34
- info!("{} installed and set {} as default\n{} to use {tool} in this project run `volta pin {too;
+ info!("{} installed and set {tool} as default", success_prefix());
35
+ info!(
36
+ "{} to use {tool} in this project run `volta pin {tool}`",
37
+ success_prefix()
38
+ );
39
}
40
41
0 commit comments