From 143f03186ce3ef69e185c5e2abcc2045ef3ec817 Mon Sep 17 00:00:00 2001 From: Erin Abicht Date: Mon, 17 Apr 2023 18:42:17 -0400 Subject: [PATCH] Fix sccache instructions --- src/development/environment.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/development/environment.md b/src/development/environment.md index 1dc0d06..3220bc2 100644 --- a/src/development/environment.md +++ b/src/development/environment.md @@ -7,7 +7,7 @@ Just use `WSL` if you want. Of course, first you will need to install `Rust`. The best way to do this is through [rustup](https://www.rust-lang.org/tools/install). Additionally, you will need to install [clippy](https://doc.rust-lang.org/nightly/clippy/installation.html) and [rustfmt](https://github.com/rust-lang/rustfmt). -You probably will also want to install `sccache` from your distribution's package manager, and export the `RUSTC_WRAPPER='sccache'` environment variable however your shell does it. +You probably will also want to `cargo install sccache`, and export the `RUSTC_WRAPPER='sccache'` environment variable however your shell does it. Then, you'll want to `git clone` whatever repository you're wanting to work on.