summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--readme.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/readme.md b/readme.md
index 4d55e9e..74589ef 100644
--- a/readme.md
+++ b/readme.md
@@ -90,9 +90,11 @@ Here's a sample script to install the approriate dependencies on an Ubunutu serv
# Install node and depencencies
sudo apt-get update -y
sudo apt-get install python-software-properties python g++ make -y
+# On Ubuntu 12.10 and greater, add-apt-repository is provided by the software-properties-common package
+#sudo apt-get install software-properties-common -y
sudo add-apt-repository ppa:chris-lea/node.js -y
sudo apt-get update -y
-sudo apt-get install nodejs npm -y
+sudo apt-get install nodejs -y
# Forever to keep server running
sudo npm install -g forever