Correct typo

This commit is contained in:
Jason Ertel
2021-09-02 20:30:48 -04:00
parent f659079542
commit 649f339934

View File

@@ -98,6 +98,7 @@ function validatePassword() {
if [[ $len -lt 6 ]]; then if [[ $len -lt 6 ]]; then
echo "Password does not meet the minimum requirements" echo "Password does not meet the minimum requirements"
exit 2 exit 2
fi
check_password_and_exit "$password" check_password_and_exit "$password"
} }