From 2f61f900aeafe12c283286b0b9345e737dc9ab3b Mon Sep 17 00:00:00 2001 From: funk-on-code <113871227+funk-on-code@users.noreply.github.com> Date: Mon, 5 Aug 2024 19:07:30 +1000 Subject: [PATCH] correct prompts (no -p, oopsies). Signed-off-by: funk-on-code <113871227+funk-on-code@users.noreply.github.com> --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 820a36a..64d5f9d 100644 --- a/install.sh +++ b/install.sh @@ -97,7 +97,7 @@ disk_prompt (){ username_prompt (){ output 'Please enter the name for a user account:' - read -r -p username + read -r username if [ -z "${username}" ]; then output 'Sorry, You need to enter a username.' @@ -107,7 +107,7 @@ username_prompt (){ fullname_prompt (){ output 'Please enter the full name for the user account:' - read -r -p fullname + read -r fullname if [ -z "${fullname}" ]; then output 'Please enter the full name of the users account.'