password-store

Simple password manager using gpg and ordinary unix directories
git clone https://git.zx2c4.com/password-store
Log | Files | Refs | README | LICENSE

commit 91ef9dbbea26573414220073dd92bba4b1d4c94a
parent 0d95a5f7bd607ca65f855258ae9800ea17a077c3
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Mon, 21 Apr 2014 00:46:27 +0200

insert: Go to top of loop if invalid read.

Diffstat:
Msrc/password-store.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -421,9 +421,9 @@ cmd_insert() { local password local password_again while true; do - read -r -p "Enter password for $path: " -s password + read -r -p "Enter password for $path: " -s password || continue echo - read -r -p "Retype password for $path: " -s password_again + read -r -p "Retype password for $path: " -s password_again || continue echo if [[ $password == "$password_again" ]]; then $GPG -e "${GPG_RECIPIENT_ARGS[@]}" -o "$passfile" $GPG_OPTS <<<"$password"