Merge pull request #151 from poanetwork/vb-node12

Init script: explicitly install node 12
This commit is contained in:
Victor Baranov 2020-02-07 15:22:20 +03:00 committed by GitHub
commit d139ce4d3f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -66,6 +66,7 @@ if ! which libtool >/dev/null; then
fi
if ! which node >/dev/null; then
log "Installing nodejs.."
curl -sL https://rpm.nodesource.com/setup_12.x | sudo bash -
yum --enablerepo=epel install -y nodejs >"$LOG"
fi
if ! which gcc >/dev/null; then