mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-11-17 18:40:44 +01:00
14 lines
149 B
Plaintext
14 lines
149 B
Plaintext
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
. ../../../nvm.sh
|
||
|
|
nvm uninstall v0.10.7
|
||
|
|
|
||
|
|
if [ -f ".nvmrc" ]; then
|
||
|
|
rm .nvmrc
|
||
|
|
fi
|
||
|
|
|
||
|
|
if [ -f ".nvmrc.bak" ]; then
|
||
|
|
mv .nvmrc.bak .nvmrc
|
||
|
|
fi
|
||
|
|
|