install npm

This commit is contained in:
Valentin 2024-02-23 18:52:40 +01:00
parent c4edd61fbe
commit 1a9f6b7e40
1 changed files with 9 additions and 1 deletions

View File

@ -170,7 +170,15 @@ fi
echo -e "${PURPLE}${BOLD}Install NPM ? (y/n) ${RESET}"
read answer
if [[ "$answer" == "y" ]]; then
echo "youhou";
if [ "$(whoami)" != "$username" ]; then
su - $username
fi
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash
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
echo "ok pour npm";
fi