You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Issue: nvm use [major] doesn't work properly
If you attempt to try something like nvm use 14 when you have a node v14.x.x installed, you get an error message.
How To Reproduce:
Have a major version of node (example 14.17.3) installed
npm use 14
Receive error message
Expected Behavior:
The latest version of node v14 should be used.
Additional context:
It seems possible this could be a typo on a feature that should work because it looks like it's very close to working:
$ nvm use 14
node vv14.17.3 (64-bit) is not installed or cannot be found.
The extra v makes it look like it's trying to do the correct thing behind the scenes but the extra character makes it not work.
This functionality works as I'd expect it to if I do nvm install 14, it installs the latest version of that major version.
The text was updated successfully, but these errors were encountered:
Issue:
nvm use [major]
doesn't work properlyIf you attempt to try something like
nvm use 14
when you have a node v14.x.x installed, you get an error message.How To Reproduce:
14.17.3
) installednpm use 14
Expected Behavior:
The latest version of node v14 should be used.
Additional context:
It seems possible this could be a typo on a feature that should work because it looks like it's very close to working:
The extra
v
makes it look like it's trying to do the correct thing behind the scenes but the extra character makes it not work.This functionality works as I'd expect it to if I do
nvm install 14
, it installs the latest version of that major version.The text was updated successfully, but these errors were encountered: