Explained in terminal, I have installed a version of nodejs using asdf, but the terminal only sees the other version:
> asdf list
nodejs
12.18.3
> nodejs --version
v8.10.0
> asdf global nodejs 12.18.3
> nodejs --version
v8.10.0
Have added the following to the top of .zshrc
. $HOME/.asdf/asdf.sh
export PATH=$HOME/.asdf/asdf.sh:$PATH
Have reloaded .zshrc
> source ~/.zshrc
There are no local files which are setting the local version to 8.10.0.
How do I get nodejs --version
to give me the version that asdf acknowledges as the global version?