File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -23,11 +23,16 @@ Linux or a Mac, all you need to do is this (note that you don't need to type
23
23
in the ` $ ` s, they just indicate the start of each command):
24
24
25
25
``` bash
26
- $ curl -s https://static.rust-lang.org/rustup.sh | sudo sh
26
+ curl -L https://static.rust-lang.org/rustup.sh | sudo sh
27
27
```
28
28
29
- (If you're concerned about ` curl | sudo sh ` , please keep reading. Disclaimer
30
- below.)
29
+ If you're concerned about the [ potential insecurity] ( http://curlpipesh.tumblr.com/ ) of using ` curl | sudo sh ` ,
30
+ 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:
31
+
32
+ ``` bash
33
+ curl -L https://static.rust-lang.org/rustup.sh -o rustup.sh
34
+ sudo sh rustup.sh
35
+ ```
31
36
32
37
If you're on Windows, please download either the [ 32-bit
33
38
installer] ( https://static.rust-lang.org/dist/rust-nightly-i686-pc-windows-gnu.exe )
You can’t perform that action at this time.
0 commit comments