aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Wilm <jwilm@users.noreply.github.com>2017-01-07 09:43:17 -0800
committerGitHub <noreply@github.com>2017-01-07 09:43:17 -0800
commitfc99df08db40cb47abd4add79829f311cee85767 (patch)
treec4b7d0c7ba6eed75ff39f23e9d06d0083d3a9661
parent852c2d8f15bfc11f0222fa08626c38724accd35a (diff)
parent8300869b98bd02654de1df6d9f76da29ce5e58a4 (diff)
downloadalacritty-fc99df08db40cb47abd4add79829f311cee85767.tar.gz
alacritty-fc99df08db40cb47abd4add79829f311cee85767.zip
Merge pull request #188 from coder543/patch-3
Change README.md to reflect the current compiler situation
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 269c3d61..9d415c46 100644
--- a/README.md
+++ b/README.md
@@ -45,11 +45,15 @@ will walk you through how to build from source on both macOS and Ubuntu.
cd alacritty
```
-3. Make sure you have the right Rust compiler installed. Alacritty is currently
- pinned to a certain Rust nightly, and the compiler/nightly dependencies are
- updated as needed. To install the correct compiler, run:
+3. Make sure you have the right Rust compiler installed. Alacritty requires nightly Rust. Run
```sh
+ rustup override set nightly
+ ```
+
+ If you run into problems, you can try a known-good version of the compiler by running
+
+ ```sh
rustup override set $(cat rustc-version)
```