mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 14:21:50 +00:00
14 lines
188 B
Bash
Executable File
14 lines
188 B
Bash
Executable File
#!/bin/sh
|
|
|
|
\. ../../../nvm.sh
|
|
nvm uninstall v0.10.28
|
|
nvm uninstall v0.10.29
|
|
nvm uninstall v4.7.1
|
|
nvm uninstall v4.7.2
|
|
|
|
rm -f .nvmrc
|
|
|
|
if [ -f ".nvmrc.bak" ]; then
|
|
mv .nvmrc.bak .nvmrc
|
|
fi
|