From ff6cb3b87ef58d58fe50937c65a1c0f74a306755 Mon Sep 17 00:00:00 2001 From: CanbiZ <47820557+MickLesk@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:22:01 +0100 Subject: [PATCH] Fix rustup update to avoid interactive prompts Redirects stdin from /dev/null when running 'rustup update' to prevent any interactive prompts that may block automated scripts. --- misc/tools.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/tools.func b/misc/tools.func index 7a30343c2..197c451e4 100644 --- a/misc/tools.func +++ b/misc/tools.func @@ -4439,7 +4439,7 @@ function setup_rust() { } # Update to latest patch version - $STD rustup update "$RUST_TOOLCHAIN" || true + $STD rustup update "$RUST_TOOLCHAIN"