From b1952e44f6ea2d35e832d222d6de9e4dcfcd8648 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 8 Jan 2015 11:39:49 -0700 Subject: [PATCH] specify version of node to install --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index d13a380..75809fc 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,16 @@ A script to install basic development tools for node (git, node, gcc, etc) Works for any recent version of Ubuntu or OS X. ```bash +# Specify the version of node to install +echo "v0.11.14" > /tmp/NODE_VER + +# And install away! curl -fsSL bit.ly/easy-install-node | bash +``` +**For older versions of Ubuntu**: -# For older version of ubuntu +```bash wget -nv bit.ly/easy-install-node -O - | bash ```