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