diff options
-rwxr-xr-x | joes-arch-install-UEFI.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/joes-arch-install-UEFI.sh b/joes-arch-install-UEFI.sh index eb66988..13a9ce8 100755 --- a/joes-arch-install-UEFI.sh +++ b/joes-arch-install-UEFI.sh @@ -318,17 +318,17 @@ if [[ $answr == y || $answr == Y || $answr == yes || $answr == Yes || $answr == echo -n -e "> " read -r -s usrpwd echo && echo - echo -e "${BCYAN}Confirm ${BYELLOW}user ${BCYAN}password:" + echo -e "${BCYAN}Confirm ${BYELLOW}user password:${BCYAN}" echo -n -e "> " read -r -s usrusrpwd if [[ $usrusrpwd != "$usrpwd" ]]; then echo && echo - echo "${BRED}Password mismatch, retrying...${END}" + echo -e "${BRED}Password mismatch, retrying...${END}" sleep 2 fi if [[ $usrpwd == "" ]]; then echo && echo - echo "${BRED}Password is empty, retrying...${END}" + echo -e "${BRED}Password is empty, retrying...${END}" sleep 2 fi done |