install npm 4

This commit is contained in:
Valentin 2024-02-23 19:19:36 +01:00
parent a36187b9f1
commit 906ecf16da
1 changed files with 4 additions and 1 deletions

View File

@ -170,8 +170,11 @@ fi
echo -e "${PURPLE}${BOLD}Install NPM ? (y/n) ${RESET}"
read answer
if [[ "$answer" == "y" ]]; then
if [[ -z "$username" ]]; then
username = $(getent passwd 1000 | cut -d: -f1)
fi
su -c 'curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash &&\
export NVM_DIR="/home/${username}/.nvm" &&\
export NVM_DIR="$HOME/.nvm" &&\
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" &&\
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" &&\
nvm install v18' $username