Skip to content

Commit b60b1e8

Browse files
authored
Merge pull request #1417 from gautamprikshit1/info-installed-change
fixed #1311
2 parents 352ca26 + c24ee6a commit b60b1e8

File tree

1 file changed

+5
-1
lines changed
  • crates/volta-core/src/tool

1 file changed

+5
-1
lines changed

crates/volta-core/src/tool/mod.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,11 @@ fn debug_already_fetched<T: Display + Sized>(tool: T) {
3333

3434
#[inline]
3535
fn info_installed<T: Display + Sized>(tool: T) {
36-
info!("{} installed and set {} as default", success_prefix(), tool);
36+
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+
);
3741
}
3842

3943
#[inline]

0 commit comments

Comments
 (0)