File tree Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Expand file tree Collapse file tree 3 files changed +11
-4
lines changed Original file line number Diff line number Diff line change 1- # {{Description: This deploy hook will run the following code snippet to automate the installation of the Node .}}
1+ # {{Description: This deploy hook will run the following code snippet to automate the installation of node .}}
22sudo apt-get install software-properties-common python-software-properties -y
3- echo -en "\n" | sudo add-apt-repository ppa:chris-lea/node.js
4- sudo apt-get update -y --fix-missing || true
5- sudo apt-get install -y nodejs
3+ curl -sL https://deb.nodesource.com/setup | sudo bash -
4+ sudo apt-get install -y nodejs
Original file line number Diff line number Diff line change 1+ # {{Description: This deploy hook will run the following code snippet to automate the installation of node v0.10.x}}
2+ sudo apt-get install software-properties-common python-software-properties -y
3+ curl -sL https://deb.nodesource.com/setup_0.10 | sudo bash -
4+ sudo apt-get install -y nodejs
Original file line number Diff line number Diff line change 1+ # {{Description: This deploy hook will run the following code snippet to automate the installation of the Node.}}
2+ sudo apt-get install software-properties-common python-software-properties -y
3+ curl -sL https://deb.nodesource.com/setup | sudo bash -
4+ sudo apt-get install -y nodejs
You can’t perform that action at this time.
0 commit comments