12 lines
262 B
Bash
12 lines
262 B
Bash
#!/bin/sh
|
|
#
|
|
# install-nvm.sh - install current nvm for nodejs
|
|
#
|
|
# USAGE
|
|
# run "./install-nvm.sh" to make sure dependencies are satisfied
|
|
|
|
# node/nvm environment
|
|
curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/master/install.sh | bash
|
|
nvm install --lts
|
|
|