From 2b980dce5991daf7347f38332107eb23b730bd1f Mon Sep 17 00:00:00 2001 From: MickLesk Date: Tue, 28 Jul 2026 16:39:53 +0200 Subject: [PATCH] Read prompt input directly from /dev/tty Update the interactive `read` call in `misc/build.func` to read from `/dev/tty` instead of standard input. This ensures the timeout prompt still accepts user input even when stdin is redirected or consumed by another stream. --- misc/build.func | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/build.func b/misc/build.func index 95bfa2698..8246da3f8 100644 --- a/misc/build.func +++ b/misc/build.func @@ -5337,7 +5337,7 @@ EOF local response="" local read_rc - read -t 60 -r response + read -t 60 -r response