mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 06:11:51 +00:00
14 lines
175 B
Bash
Executable File
14 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
|
|
\. ../../../nvm.sh
|
|
nvm deactivate
|
|
nvm uninstall v0.10.7
|
|
nvm uninstall v1.0.0
|
|
nvm uninstall --lts
|
|
|
|
rm .nvmrc
|
|
|
|
if [ -f ".nvmrc.bak" ]; then
|
|
mv .nvmrc.bak .nvmrc
|
|
fi
|