Skip to content

Commit

Permalink
Fix Ubuntu package installation for nodejs >0.10.0
Browse files Browse the repository at this point in the history
No longer attempt to install npm from the nodejs ppa
Nodejs now includes & conflicts with the npm package.
As the ppa now only contains 0.10.0, the npm package should no longer be installed.
  • Loading branch information
blutack committed Mar 15, 2013
1 parent fe2eecd commit f977983
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/dependencies/launch_helper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ if [ $? -ne 0 ] || [ ! -x "$node" ]; then
sudo apt-get install python-software-properties
sudo add-apt-repository ppa:chris-lea/node.js
sudo apt-get update
sudo apt-get install nodejs npm
sudo apt-get install nodejs
;;
*)
echo "--> node.js is missing, please install node.js from: http://nodejs.org"
Expand Down

0 comments on commit f977983

Please sign in to comment.