Move -r to before the -p

Signed-off-by: Adam Warner <adamw@rner.email>
This commit is contained in:
Adam Warner 2018-10-26 19:17:49 +01:00
parent 7c6eecc9c8
commit 3d4fea6510
No known key found for this signature in database
GPG key ID: F5410858022DA5EB

View file

@ -111,7 +111,7 @@ SetWebPassword() {
# So we reset the terminal via stty if the user does press Ctrl+C # So we reset the terminal via stty if the user does press Ctrl+C
trap '{ echo -e "\nNo password will be set" ; stty sane ; exit 1; }' INT trap '{ echo -e "\nNo password will be set" ; stty sane ; exit 1; }' INT
# shellcheck disable=SC2162 # shellcheck disable=SC2162
read -s -p "Enter New Password (Blank for no password): " PASSWORD read -s -r -p "Enter New Password (Blank for no password): " PASSWORD
echo "" echo ""
if [ "${PASSWORD}" == "" ]; then if [ "${PASSWORD}" == "" ]; then
@ -121,7 +121,7 @@ SetWebPassword() {
fi fi
# shellcheck disable=SC2162 # shellcheck disable=SC2162
read -s -p "Confirm Password: " CONFIRM read -s -r -p "Confirm Password: " CONFIRM
echo "" echo ""
fi fi