From 3a6a4cc36d8e96322c6a5be26351612ef4fbb90c Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Fri, 27 May 2022 15:16:48 +0200 Subject: [PATCH] Cosmetics again. --- easy-arch.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index 2f3611b..ad27b43 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -134,14 +134,14 @@ userpass_selector () { fi read -r -s -p "Insert a user password for $username (you're not going to see the password): " userpass if [[ -z "$userpass" ]]; then - incEcho "You need to enter a password for $username." + incEcho "You need to enter a password for $username in order to continue." return 1 fi echo - read -r -s -p "Insert the password again (for double checking): " userpass2 + read -r -s -p "Insert the password again (you're not going to see the password): " userpass2 echo if [[ "$userpass" != "$userpass2" ]]; then - incEcho "Passwords don't match, try again." + incEcho "Passwords don't match, please try again." return 1 fi return 0