This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env bash | |
set -x | |
cd /tmp | |
rm -rf node | |
set -ue | |
git clone git://github.com/joyent/node.git | |
cd node | |
git checkout v0.10.28 # update with latest version | |
./configure --prefix=/usr | |
make | |
sudo make install | |
# vim: ft=sh: |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The repo is https://github.com/nodejs/node now