From f80d7dcd35d9c1d162bf644104a45c7036db11ce Mon Sep 17 00:00:00 2001 From: Stefan Junker Date: Mon, 14 Aug 2023 19:47:57 +0200 Subject: [PATCH] chore(Makefile): don't override rustup toolchain which is set in the matrix on CI --- Makefile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 1d508906..7d1c160d 100644 --- a/Makefile +++ b/Makefile @@ -95,10 +95,7 @@ docs: tools tools: tool_rust tool_fmt tool_clippy tool_readme tool_rust: - @if rustup --version >/dev/null 2>&1; then \ - echo "# Makefile # found rustup, setting override stable"; \ - rustup override set stable; \ - else \ + @if ! rustup --version >/dev/null 2>&1; then \ echo "# Makefile # rustup not found, hopefully we're on stable"; \ fi;