Skip to content

Commit

Permalink
Auto merge of #6455 - wezm:patch-1, r=dwijnand
Browse files Browse the repository at this point in the history
Update the rustup URL

Yesterday at the Melbourne Rust meetup I helped someone install Rust on their Mac. They were following the instructions from the cargo book and I was surprised to see `rustup` and all the tools being installed globally in `/usr/local/bin`. Eventually we worked out that the URL in the cargo book was different from the one on the Rust website and on rustup.rs. After using the other URL the install proceeded as expected, installing into the user's home directory. It appears the old link is an old version of rustup/rust-init.

This PR updates the install command to match the Rust home page.
  • Loading branch information
bors committed Dec 17, 2018
2 parents bd5b21e + 41b943a commit 9cb9eae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/src/getting-started/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ by using `rustup`. Installing Rust using `rustup` will also install `cargo`.
On Linux and macOS systems, this is done as follows:

```console
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh
$ curl https://sh.rustup.rs -sSf | sh
```

It will download a script, and start the installation. If everything goes well,
Expand Down

0 comments on commit 9cb9eae

Please sign in to comment.