This commit is contained in:
casperklein 2024-06-18 20:46:19 +02:00
parent d318e7ad08
commit c3860f6bfe
1 changed files with 1 additions and 1 deletions

View File

@ -104,7 +104,7 @@ function _password_request_if_missing() {
echo echo
[[ -z ${PASSWD} ]] && _exit_with_error 'Password must not be empty' [[ -z ${PASSWD} ]] && _exit_with_error 'Password must not be empty'
read -r -s -p 'Confirm Password: ' CONFIRM read -r -s -p 'Confirm Password: ' PASSWD_CONFIRM
echo echo
[[ ${PASSWD} != "${PASSWD_CONFIRM}" ]] && _exit_with_error 'Passwords do not match!' [[ ${PASSWD} != "${PASSWD_CONFIRM}" ]] && _exit_with_error 'Passwords do not match!'
fi fi