-
Notifications
You must be signed in to change notification settings - Fork 258
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fixed #1311 #1417
fixed #1311 #1417
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! Needs a small tweak to work as suggested in #1311, suggested as a revision.
crates/volta-core/src/tool/mod.rs
Outdated
@@ -31,7 +31,7 @@ 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 {} as default\n{} to use {tool} in this project run `volta pin {too; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks like this is missing some of the necessary bits to actually present the right message here!
info!("{} installed and set {} as default\n{} to use {tool} in this project run `volta pin {too; | |
info!("{} installed and set {} as default", success_prefix(), tool); | |
info!("{} to use {} in this project run `volta pin {}`, success_prefix(), tool); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! I've kicked off CI (which should pass) and we can get this merged.
Fixes #1311