Update to 1.5.1

This commit is contained in:
AJ ONeal 2015-03-15 21:36:11 -06:00
parent 91279d1fe2
commit e845e13631
1 changed files with 4 additions and 4 deletions

View File

@ -20,14 +20,14 @@ If you kinda know what you're doing already:
**io.js + dev tools**
```bash
echo "v1.1.0" > /tmp/IOJS_VER
echo "v1.5.1" > /tmp/IOJS_VER
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.1.0" > /tmp/IOJS_VER
echo "v1.5.1" > /tmp/IOJS_VER
curl -fsSL bit.ly/iojs-min | bash
# Ubuntu without curl
@ -56,7 +56,7 @@ Now you can install io.js (the new node.js)
```bash
# Specify the version of iojs to install
echo "v1.1.0" > /tmp/IOJS_VER
echo "v1.5.1" > /tmp/IOJS_VER
# And install away!
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
@ -68,7 +68,7 @@ curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
```bash
# Specify the version of iojs to install
echo "v1.1.0" > /tmp/IOJS_VER
echo "v1.5.1" > /tmp/IOJS_VER
# And install away!
wget -nv bit.ly/iojs-dev -O /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh