diff --git a/crates/volta-core/src/tool/mod.rs b/crates/volta-core/src/tool/mod.rs index 32fc4834f..83c2bdaa3 100644 --- a/crates/volta-core/src/tool/mod.rs +++ b/crates/volta-core/src/tool/mod.rs @@ -33,7 +33,11 @@ fn debug_already_fetched(tool: T) { #[inline] fn info_installed(tool: T) { - info!("{} installed and set {} as default", success_prefix(), tool); + info!("{} installed and set {tool} as default", success_prefix()); + info!( + "{} to use {tool} in this project run `volta pin {tool}`", + success_prefix() + ); } #[inline]