From 2c58eb64c517a612458a76769379f77de7bd9fcb Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 22 Apr 2015 09:54:59 -0600 Subject: [PATCH] default to latest --- README.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 10ccace..6c56936 100644 --- a/README.md +++ b/README.md @@ -20,14 +20,17 @@ If you kinda know what you're doing already: **io.js + dev tools** ```bash -echo "v1.6.3" > /tmp/IOJS_VER +echo "Current io.js version is $(curl -fsSL https://iojs.org/dist/index.tab | head -2 | tail -1 | cut -f 1)" curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh ``` **io.js only** (no git, gcc, etc) ```bash -echo "v1.6.3" > /tmp/IOJS_VER +# To install a specific version rather than defaulting to latest +echo "v1.8.1" > /tmp/IOJS_VER + +# io.js without development dependencies curl -fsSL bit.ly/iojs-min | bash # Ubuntu without curl