Skip to content

Commit 095a017

Browse files
committed
node repos updated
1 parent fa20068 commit 095a017

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

cloud66/node

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
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.}}
22
sudo 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

cloud66/node_0_10

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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

cloud66/node_0_12

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
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

0 commit comments

Comments
 (0)