From 18e606baa8ce1b2cf8ee0d4ae93604113961db11 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Tue, 17 Sep 2024 10:54:04 +0100 Subject: [PATCH] fix: install rustfmt and clippy into correct toolchains --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 3304c78..d39547b 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -27,7 +27,7 @@ fi echo "Selected toolchain: ${TOOLCHAIN}" rustup update "${TOOLCHAIN}" -rustup component add rustfmt clippy +rustup component add --toolchain "${TOOLCHAIN}" rustfmt clippy if test "${ARGS[0]}" == "cargo";then PRE_COMMAND="cargo +${TOOLCHAIN} "