diff options
author | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 11:53:16 +0100 |
---|---|---|
committer | JozanLeClerc <bousset.rudy@gmail.com> | 2019-11-19 11:53:16 +0100 |
commit | cb92aa349b5b21765607f648ca1a09ee8a4ea8e1 (patch) | |
tree | 017304e439611f2a679070a5d6e8c05420d37dd0 | |
parent | Better formatting in some situations (diff) | |
download | arch-installer-cb92aa349b5b21765607f648ca1a09ee8a4ea8e1.tar.gz arch-installer-cb92aa349b5b21765607f648ca1a09ee8a4ea8e1.tar.bz2 arch-installer-cb92aa349b5b21765607f648ca1a09ee8a4ea8e1.tar.xz arch-installer-cb92aa349b5b21765607f648ca1a09ee8a4ea8e1.tar.zst arch-installer-cb92aa349b5b21765607f648ca1a09ee8a4ea8e1.zip |
Forgot -e again
-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 |