From cd6ab3cf07a7e5af87e71ba58295e0713599def3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= Date: Fri, 15 Sep 2023 15:28:09 +0200 Subject: [PATCH] tests: install_rust: Also install clippy MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit clippy is used as part our tests, so it's useful to have it installed while we're already installing rust. In case of developers, they also better be using it. :-) Fixes: #7974 -- part 0 Signed-off-by: Fabiano FidĂȘncio (cherry picked from commit e1257758634c2d27ac8518f1cf0b23febcf74f04) --- tests/install_rust.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/install_rust.sh b/tests/install_rust.sh index 6fc62ef025..abb93cac62 100755 --- a/tests/install_rust.sh +++ b/tests/install_rust.sh @@ -42,3 +42,4 @@ else $([ "$(whoami)" != "root" ] && echo sudo) ln -sf /usr/bin/g++ /bin/musl-g++ fi rustup component add rustfmt +rustup component add clippy