You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
585 B
Bash
25 lines
585 B
Bash
#!/bin/bash
|
|
|
|
DIRECTORY="$(dirname "$(dirname "$( cd "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )")")"
|
|
|
|
function error {
|
|
echo -e "\\e[91m$1\\e[39m"
|
|
exit 1
|
|
}
|
|
|
|
#prepare to run nvm
|
|
export NVM_DIR="$HOME/.nvm"
|
|
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh" # This loads nvm
|
|
[ -s "$NVM_DIR/bash_completion" ] && \. "$NVM_DIR/bash_completion" # This loads nvm bash_completion
|
|
cd $NVM_DIR
|
|
|
|
#Uninstall NodeJS
|
|
nvm deactivate
|
|
nvm uninstall default || error "Failed to purge Node.JS!"
|
|
|
|
#Remove nvm
|
|
sudo rm -rf "$NVM_DIR"
|
|
|
|
#remove nvm stuff from bashrc
|
|
sed -i '/NVM_DIR/d' /home/pi/.bashrc
|