Browse Source

Prevent attempts to `nvm install --lts`

Jordan Harband 9 years ago
parent
commit
44f4817f7d
No known key found for this signature in database
GPG Key ID: 64A196AEE0916D55
  1. 4
      nvm.sh

4
nvm.sh

@ -1902,6 +1902,10 @@ nvm() { @@ -1902,6 +1902,10 @@ nvm() {
nvm_get_make_jobs "$1"
shift # consume job count
;;
--lts*)
nvm_err 'installing based on LTS filtering is not yet supported.'
return 12
;;
*)
break # stop parsing args
;;

Loading…
Cancel
Save