diff options
-rwxr-xr-x | public/nixos/install.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/public/nixos/install.sh b/public/nixos/install.sh index 5e160da..e690f01 100755 --- a/public/nixos/install.sh +++ b/public/nixos/install.sh @@ -123,9 +123,9 @@ green "Done." yellow "Generating password-hash.txt file for user login..." while true; do - read -s -p "Password: " password + read -r -s -p "Password: " password echo - read -s -p "Password (again): " password_confirmation + read -r -s -p "Password (again): " password_confirmation echo [ "$password" = "$password_confirmation" ] && break red "Please try again" |