From 4247de265d3713c2f9ae23e6004ce928b7f024c4 Mon Sep 17 00:00:00 2001 From: Tommaso Chiti Date: Thu, 12 May 2022 10:24:35 +0200 Subject: [PATCH] Cosmetics. --- easy-arch.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/easy-arch.sh b/easy-arch.sh index 27411dc..a2ca5d4 100755 --- a/easy-arch.sh +++ b/easy-arch.sh @@ -119,16 +119,16 @@ network_installer () { # User enters a password for the LUKS Container (function). lukspass_selector () { - read -r -s -p "Insert password for the LUKS container (you're not going to see the password): " password + read -r -s -p "Insert the password for the LUKS container (you're not going to see the password): " password if [ -z "$password" ]; then - incEcho "\nYou need to enter a password for the LUKS Container in order to continue." + incEcho "You need to enter a password for the LUKS Container in order to continue." return 1 fi echo - read -r -s -p "Password (again): " password2 + read -r -s -p "Insert the password for the LUKS container again: " password2 echo if [ "$password" != "$password2" ]; then - incEcho "Passwords don't match, try again." + incEcho "Passwords don't match, please try again." return 1 fi return 0