Skip to content

Commit

Permalink
Merge pull request #1417 from gautamprikshit1/info-installed-change
Browse files Browse the repository at this point in the history
fixed #1311
  • Loading branch information
chriskrycho authored Dec 29, 2023
2 parents 352ca26 + c24ee6a commit b60b1e8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion crates/volta-core/src/tool/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ fn debug_already_fetched<T: Display + Sized>(tool: T) {

#[inline]
fn info_installed<T: Display + Sized>(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]
Expand Down

0 comments on commit b60b1e8

Please sign in to comment.