forked from coolaj86/node-installer.sh
user may specify NODE_VER
This commit is contained in:
parent
2d1a3a697d
commit
5fb6c3488e
|
@ -4,7 +4,12 @@
|
|||
# wget -nv https://example.com/setup.bash -O - | bash
|
||||
|
||||
BASE_URL="https://raw.githubusercontent.com/coolaj86/node-install-script/master"
|
||||
NODE_VER="v0.11.14"
|
||||
if [ -f "/tmp/NODE_VER" ]; then
|
||||
NODE_VER=$(cat /tmp/NODE_VER | grep v)
|
||||
fi
|
||||
if [ -z "$NODE_VER" ]; then
|
||||
NODE_VER="v0.11.14"
|
||||
fi
|
||||
OS="unsupported"
|
||||
ARCH=""
|
||||
|
||||
|
|
Loading…
Reference in New Issue