From f230d02b262fcbad5e29c1b7138d2be236129193 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Sun, 20 Jan 2019 13:32:33 +0000 Subject: [PATCH] only do stable components for rustup --- common/configure_fresh_system.sh | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/common/configure_fresh_system.sh b/common/configure_fresh_system.sh index e7510ea4..03bbedd3 100755 --- a/common/configure_fresh_system.sh +++ b/common/configure_fresh_system.sh @@ -107,15 +107,12 @@ if [[ -z $NORUST ]]; then rustup install nightly rustup default stable - rustup component add rls-preview --toolchain stable - rustup component add clippy-preview --toolchain stable - rustup component add rustfmt-preview --toolchain stable + rustup component add rls --toolchain stable + rustup component add clippy --toolchain stable + rustup component add rustfmt --toolchain stable rustup component add rust-analysis --toolchain stable rustup component add rust-src --toolchain stable - rustup component add rls-preview --toolchain nightly - rustup component add clippy-preview --toolchain nightly - rustup component add rustfmt-preview --toolchain nightly rustup component add rust-analysis --toolchain nightly rustup component add rust-src --toolchain nightly