mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 22:31:51 +00:00
17 lines
243 B
Bash
Executable File
17 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
\. ../../nvm.sh
|
|
nvm deactivate
|
|
nvm uninstall iojs-v1.0.0
|
|
nvm uninstall iojs-v1.0.3
|
|
nvm uninstall iojs-v3.3.0
|
|
nvm uninstall iojs-v3.3.1
|
|
|
|
if [ -f ".nvmrc" ]; then
|
|
rm .nvmrc
|
|
fi
|
|
|
|
if [ -f ".nvmrc.bak" ]; then
|
|
mv .nvmrc.bak .nvmrc
|
|
fi
|