You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
165 B
15 lines
165 B
![]()
10 years ago
|
#!/bin/sh
|
||
|
|
||
![]()
9 years ago
|
. ../../nvm.sh
|
||
![]()
10 years ago
|
nvm deactivate
|
||
|
nvm uninstall iojs-v1.0.0
|
||
|
|
||
|
if [ -f ".nvmrc" ]; then
|
||
|
rm .nvmrc
|
||
|
fi
|
||
|
|
||
|
if [ -f ".nvmrc.bak" ]; then
|
||
|
mv .nvmrc.bak .nvmrc
|
||
|
fi
|
||
|
|