update curl output flag.

from curl manpage:
```
       -O, --remote-name
              Write output to a local file named like the remote file we get. (Only the file part
              of the remote file is used, the path is cut off.)
```
This commit is contained in:
John Albietz 2014-12-28 12:24:37 -06:00
parent d9e0bbcc4f
commit ccd185e506

View File

@ -30,7 +30,7 @@ If you're concerned about the [potential insecurity](http://curlpipesh.tumblr.co
please keep reading and see our disclaimer below. And feel free to use a two-step version of the installation and examine our installation script:
```bash
curl -L https://static.rust-lang.org/rustup.sh -o rustup.sh
curl -L https://static.rust-lang.org/rustup.sh -O
sudo sh rustup.sh
```