From 293ad62414c0e2eb539fa5c5afb131b4689e4193 Mon Sep 17 00:00:00 2001 From: Josh Lind Date: Thu, 12 Dec 2024 17:40:27 -0500 Subject: [PATCH] [Devsetup] Install the latest rust toolchain --- scripts/dev_setup.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/dev_setup.sh b/scripts/dev_setup.sh index 84763fa616aed3..589d4c10642f02 100755 --- a/scripts/dev_setup.sh +++ b/scripts/dev_setup.sh @@ -466,8 +466,9 @@ function install_rustup_components_and_nightly { rustup show rustup toolchain list -v - echo "Updating rustup and installing rustfmt & clippy" + echo "Updating rustup and installing the latest rustc, rustfmt & clippy" rustup update + rustup toolchain install stable # Install the latest rustc to ensure that dependencies can always be built (even if we're behind) rustup component add rustfmt rustup component add clippy