mirror of
https://github.com/nvm-sh/nvm.git
synced 2025-05-10 06:11:51 +00:00
12 lines
144 B
Bash
Executable File
12 lines
144 B
Bash
Executable File
#!/bin/sh
|
|
|
|
\. ../../../nvm.sh
|
|
|
|
nvm install 0.10.7
|
|
nvm install --lts=argon
|
|
nvm install --lts
|
|
|
|
if [ -f ".nvmrc" ]; then
|
|
mv .nvmrc .nvmrc.bak
|
|
fi
|