2015-01-14 09:52:18 +08:00
|
|
|
#!/bin/sh
|
|
|
|
|
2016-11-04 13:15:18 +08:00
|
|
|
\. ../../nvm.sh
|
2015-01-14 09:52:18 +08:00
|
|
|
nvm deactivate
|
|
|
|
nvm uninstall iojs-v1.0.0
|
2015-01-26 04:00:52 +08:00
|
|
|
nvm uninstall iojs-v1.0.3
|
2016-08-15 10:43:47 +08:00
|
|
|
nvm uninstall iojs-v3.3.0
|
|
|
|
nvm uninstall iojs-v3.3.1
|
2015-01-14 09:52:18 +08:00
|
|
|
|
|
|
|
if [ -f ".nvmrc" ]; then
|
|
|
|
rm .nvmrc
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f ".nvmrc.bak" ]; then
|
|
|
|
mv .nvmrc.bak .nvmrc
|
|
|
|
fi
|
|
|
|
|