Skip to content

Commit

Permalink
Updated the NVM and Node versions installed with this script.
Browse files Browse the repository at this point in the history
  • Loading branch information
bmcgonag committed Apr 27, 2020
1 parent 211168e commit ea19cb5
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions vector_install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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 ""
Expand All @@ -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
Expand Down

0 comments on commit ea19cb5

Please sign in to comment.