From 1b573988a7ee48bfe3eff5a9953fd2d3f9788423 Mon Sep 17 00:00:00 2001 From: Michael Mauderer Date: Mon, 23 Mar 2020 21:26:30 +0100 Subject: [PATCH] Fix instructions to set up toolchain for project build. Fixes #2179. (https://github.com/enso-org/ide/pull/284) Original commit: https://github.com/enso-org/ide/commit/cad50bb0930e04c9674958c63a3e5305e9b969f1 --- gui/docs/contributing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/docs/contributing.md b/gui/docs/contributing.md index a753f54fb6..eab31b9233 100644 --- a/gui/docs/contributing.md +++ b/gui/docs/contributing.md @@ -12,7 +12,7 @@ need the following setup: ```bash rustup toolchain install nightly-2019-11-04 # Install the nightly channel. - rustup default nightly # Set it as the default one. + rustup override set nightly-2019-11-04 # Set it as the default toolchain for this folder. rustup component add clippy # Install the linter. cargo install cargo-watch # To enable ./run watch utility ```