1 parent 168e51f commit dc8c54aCopy full SHA for dc8c54a
2 files changed
.changeset/fair-carrots-greet.md
@@ -0,0 +1,5 @@
1
+---
2
+"fnm": patch
3
4
+
5
+Clarify the interactive `fnm use` missing-version prompt by prefixing the message with `fnm` so it is obvious which tool is asking to install Node.
src/commands/use.rs
@@ -181,7 +181,7 @@ fn should_install_interactively(requested_version: &UserVersion) -> bool {
181
}
182
183
let error_message = format!(
184
- "Can't find an installed Node version matching {}.",
+ "fnm can't find an installed Node version matching {}.",
185
requested_version.to_string().italic()
186
);
187
eprintln!("{}", error_message.red());
0 commit comments