7 lines
155 B
Text
7 lines
155 B
Text
|
#!/bin/bash
|
||
|
if command -v nvm >/dev/null 2>&1; then
|
||
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.1/install.sh | bash
|
||
|
else
|
||
|
exit 0
|
||
|
fi
|