Update README.md

This commit is contained in:
AJ ONeal 2015-01-24 16:29:03 -07:00
parent 9f245dd42b
commit 2d13295e63
1 changed files with 3 additions and 3 deletions

View File

@ -18,14 +18,14 @@ If you kinda know what you're doing already:
**io.js + dev tools** **io.js + dev tools**
```bash ```bash
echo "v1.0.3" > /tmp/IOJS_VER echo "v1.0.4" > /tmp/IOJS_VER
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh
``` ```
**io.js only** (no git, gcc, etc) **io.js only** (no git, gcc, etc)
```bash ```bash
echo "v1.0.3" > /tmp/IOJS_VER echo "v1.0.4" > /tmp/IOJS_VER
curl -fsSL bit.ly/iojs-min | bash curl -fsSL bit.ly/iojs-min | bash
# Ubuntu without curl # Ubuntu without curl
@ -54,7 +54,7 @@ Now you can install io.js (the new node.js)
```bash ```bash
# Specify the version of iojs to install # Specify the version of iojs to install
echo "v1.0.3" > /tmp/IOJS_VER echo "v1.0.4" > /tmp/IOJS_VER
# And install away! # And install away!
curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh curl -fsSL bit.ly/iojs-dev -o /tmp/iojs-dev.sh; bash /tmp/iojs-dev.sh