From ea19cb59a39db2c171e4e0b3508fe5f98f5451fa Mon Sep 17 00:00:00 2001 From: brian Date: Mon, 27 Apr 2020 16:20:18 -0500 Subject: [PATCH] Updated the NVM and Node versions installed with this script. --- vector_install.sh | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/vector_install.sh b/vector_install.sh index 27ece60..7a9a4cd 100644 --- a/vector_install.sh +++ b/vector_install.sh @@ -276,7 +276,7 @@ if [ ! -d ~/.nvm ] then echo "" echo "**** install nvm and node js" - curl -sSL https://raw.githubusercontent.com/creationix/nvm/v0.35.1/install.sh | bash + curl -sSL https://raw.githubusercontent.com/creationix/nvm/v0.35.3/install.sh | bash sleep 3s echo "" echo "" @@ -296,14 +296,21 @@ fi echo "" echo "" source ~/.profile - echo "**** Attempt to install NodeJS 8.11.3 usign NVM" - nvm install 8.11.3 + echo "**** " + echo "**** " + echo "**** NOTE: NodeJS for this project is updated from 8.11.3 to 12.16.1" + echo "**** " + echo "**** " + sleep 5s + + echo "**** Attempting to install NodeJS 12.16.1 usign NVM" + nvm install 12.16.1 echo "" echo "" sleep 2s # now tell nvm to use the latest installed version - nvm use 8.11.3 + nvm use 12.16.1 echo "" echo "" sleep 1s