Merge pull request #13833 from mkllnk/nodenv

Add instructions how to install nodenv
This commit is contained in:
Maikel
2026-01-12 10:40:54 +11:00
committed by GitHub

View File

@@ -10,6 +10,12 @@ set -e
if ! command -v nodenv > /dev/null; then
printf "Please install https://github.com/nodenv/nodenv.\n"
printf '```'"\n"
printf "git clone https://github.com/nodenv/nodenv.git ~/.nodenv\n"
printf "git clone https://github.com/nodenv/node-build.git ~/.nodenv/plugins/node-build\n"
printf "nodenv init\n"
printf 'eval "$(nodenv init -)"'"\n"
printf '```'"\n"
exit 1
fi