default to latest

This commit is contained in:
AJ ONeal 2015-04-22 09:54:59 -06:00
förälder c09719e26a
incheckning 2c58eb64c5
1 ändrade filer med 5 tillägg och 2 borttagningar

Visa fil

@ -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