From 22bcab894e06adebe474a25e59611c89630e308b Mon Sep 17 00:00:00 2001 From: Pulse Monitor Date: Sun, 17 Aug 2025 10:48:19 +0000 Subject: [PATCH] fix: install script not working when piped through bash (addresses #324) The read command needs to explicitly read from /dev/tty when the script is piped through bash (curl ... | bash) otherwise it can't read user input --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index c6804e0d5..d7e2b74c8 100755 --- a/install.sh +++ b/install.sh @@ -324,7 +324,7 @@ main() { echo "2) Reinstall" echo "3) Remove" echo "4) Cancel" - read -p "Select option [1-4]: " choice + read -p "Select option [1-4]: " choice < /dev/tty case $choice in 1)