From b2e39f41a850b5fdfb43bae3fbfdf962822aaf56 Mon Sep 17 00:00:00 2001
From: Antonin Carette <antonin.carette@gmail.com>
Date: Thu, 21 Jul 2016 11:24:30 -0400
Subject: [PATCH] Update preparing_the_build.md

`multirust` is now deprecated - now use `rustup`
---
 src/getting_started/preparing_the_build.md | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/src/getting_started/preparing_the_build.md b/src/getting_started/preparing_the_build.md
index 18799a3..e8ac14d 100644
--- a/src/getting_started/preparing_the_build.md
+++ b/src/getting_started/preparing_the_build.md
@@ -33,14 +33,10 @@ $ [your package manager] install make nasm qemu
 
 While the following step is not _required_, it is recommended. If you already have a functioning Rust nightly installation, you can skip this step:
 
-We will use `multirust` to manage our Rust versions:
+We will use `rustup` to manage our Rust versions:
 
 ```sh
-$ curl -sf https://raw.githubusercontent.com/brson/multirust/master/quick-install.sh | sh
+$ curl https://sh.rustup.rs -sSf | sh
 ```
 
-Now, we have to configure our multirust installation to default to `nightly`:
-
-```sh
-$ multirust override nightly
-```
+Use a custom installation of Rust, to install the `nightly` version.
-- 
GitLab