Skip to content

Commit 9cb9eae

Browse files
committed
Auto merge of #6455 - wezm:patch-1, r=dwijnand
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.
2 parents bd5b21e + 41b943a commit 9cb9eae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/doc/src/getting-started/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ by using `rustup`. Installing Rust using `rustup` will also install `cargo`.
88
On Linux and macOS systems, this is done as follows:
99

1010
```console
11-
$ curl -sSf https://static.rust-lang.org/rustup.sh | sh
11+
$ curl https://sh.rustup.rs -sSf | sh
1212
```
1313

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

0 commit comments

Comments
 (0)