From f9148c36db8e42b48ea3ede9f2c16053bf85102d Mon Sep 17 00:00:00 2001 From: Stevie Robinson Date: Sat, 30 Dec 2023 18:43:15 +0100 Subject: [PATCH] Remove yes/no check from install.sh --- distribution/debian/install.sh | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/distribution/debian/install.sh b/distribution/debian/install.sh index 0b5c6c2e5..e01cb6114 100644 --- a/distribution/debian/install.sh +++ b/distribution/debian/install.sh @@ -51,13 +51,7 @@ app_guid=${app_guid:-media} echo "This will install [${app^}] to [$bindir] and use [$datadir] for the AppData Directory" echo "${app^} will run as the user [$app_uid] and group [$app_guid]. By continuing, you've confirmed that that user and group will have READ and WRITE access to your Media Library and Download Client Completed Download directories" -echo "Continue with the installation [Yes/No]?" -select yn in "Yes" "No"; do - case $yn in - Yes) break ;; - No) exit 0 ;; - esac -done +read -n 1 -r -s -p $'Press enter to continue or ctrl+c to exit...\n' # Create User / Group as needed if [ "$app_guid" != "$app_uid" ]; then