fix argument passing
This commit is contained in:
parent
3e7745177f
commit
08002c572a
|
@ -1,6 +1,6 @@
|
||||||
# Easy Install node.js
|
# Easy Install node.js
|
||||||
|
|
||||||
| Sponsored by [Daplie](https://daplie.com) |
|
<!-- | Sponsored by [Daplie](https://daplie.com) | -->
|
||||||
|
|
||||||
Automated node.js installers for OS X and Ubuntu
|
Automated node.js installers for OS X and Ubuntu
|
||||||
|
|
||||||
|
@ -8,10 +8,10 @@ Automated node.js installers for OS X and Ubuntu
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# install node.js without development dependencies
|
# install node.js without development dependencies
|
||||||
curl -fsSL bit.ly/node-installer | bash -s --no-dev-deps
|
curl -fsSL bit.ly/node-installer | bash -s -- --no-dev-deps
|
||||||
|
|
||||||
# using wget instead of curl (Ubuntu)
|
# using wget instead of curl (Ubuntu)
|
||||||
wget -nv bit.ly/node-installer -O - | bash -s --no-dev-deps
|
wget -nv bit.ly/node-installer -O - | bash -s -- --no-dev-deps
|
||||||
```
|
```
|
||||||
|
|
||||||
**node.js + dev tools**
|
**node.js + dev tools**
|
||||||
|
|
Loading…
Reference in New Issue