From 33ce66171cb867dcf23a73f8774a1ddb2d3c1fe8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cyryl=20P=C5=82otnicki?= Date: Fri, 14 Sep 2018 08:03:03 +0100 Subject: [PATCH] add stable clippy --- common/configure_fresh_system.sh | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/common/configure_fresh_system.sh b/common/configure_fresh_system.sh index 834fc787..dca88bdc 100755 --- a/common/configure_fresh_system.sh +++ b/common/configure_fresh_system.sh @@ -59,6 +59,7 @@ ln -vfs "$DIR/.config/vdirsyncer/config" ~/.config/vdirsyncer/ mkdir -p ~/.config/Code/User ln -vfs "$DIR/.config/Code/User/settings.json" ~/.config/Code/User/settings.json ln -vfs "$DIR/.config/Code/User/keybindings.json" ~/.config/Code/User/keybindings.json +mkdir -p ~/.cargo/ source ~/.setenv @@ -101,8 +102,9 @@ if [[ -z $NORUST ]]; then rustup install nightly rustup default stable - rustup component add rustfmt-preview --toolchain 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 rust-analysis --toolchain stable rustup component add rust-src --toolchain stable