From 9de0c7eabe9d922d795c066a5731f98edfd8f1e7 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Thu, 12 Dec 2024 22:11:04 +0900 Subject: [PATCH] BUILD_LOCALLY: rephrase --- developer_toolbox/build_retrodeck_locally.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/developer_toolbox/build_retrodeck_locally.sh b/developer_toolbox/build_retrodeck_locally.sh index d132a9d5..643e5411 100755 --- a/developer_toolbox/build_retrodeck_locally.sh +++ b/developer_toolbox/build_retrodeck_locally.sh @@ -4,7 +4,7 @@ # Check if script is running with elevated privileges if [ "$EUID" -ne 0 ]; then - read -rp "The build might fail without some superuser permissions, please run me with sudo. Continue without sudo? [y/N] " continue_without_sudo + read -rp "The build might fail without some superuser permissions, please run me with sudo. Continue WITHOUT sudo (not suggested)? [y/N] " continue_without_sudo if [[ "$continue_without_sudo" != "y" ]]; then exit 1 fi