Skip to content

Commit

Permalink
move tool install to install.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
peterbraden committed May 24, 2012
1 parent ee245cb commit a741e64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
11 changes: 6 additions & 5 deletions install.sh
Expand Up @@ -20,10 +20,11 @@ fi
# ============== Tools =================
echo "=== Installing tools ===\n"

# Ack
curl http://betterthangrep.com/ack-standalone > ~/bin/ack && chmod 0755 ~/bin/ack

# Node
git clone https://github.com/joyent/node.git && cd node && ./configure && make && sudo make install && cd .. && rm -rf node
#echo "\n\n--> Ack\n"
#curl http://betterthangrep.com/ack-standalone > ~/bin/ack && chmod 0755 ~/bin/ack

#echo "\n\n--> Node\n"
#git clone https://github.com/joyent/node.git && cd node && ./configure && make && sudo make install && cd .. && rm -rf node

#echo "--> NPM"
#git clone https://github.com/isaacs/npm.git && cd npm && make && sudo make install
11 changes: 0 additions & 11 deletions readme.md
Expand Up @@ -27,14 +27,3 @@
./install.sh



## Install Node

git clone https://github.com/joyent/node.git && cd node
./configure
make
sudo make install
cd ..
git clone https://github.com/isaacs/npm.git && cd npm
make
sudo make install

0 comments on commit a741e64

Please sign in to comment.