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 9b27d7384e22405b109e9c3883ee9d01cfaa89ec
parent 037fa8e2326ff6dd44552e740b533b45abc9b1c4
Author: Chris Down <chris@chrisdown.name>
Date:   Fri, 13 Sep 2013 07:50:47 +0200

Use a glob in the pattern match instead of using two comparisons for [yY].

Diffstat:
Msrc/password-store.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -75,7 +75,7 @@ git_add_file() { } yesno() { read -p "$1 [y/N] " response - [[ $response == "y" || $response == "Y" ]] || exit 1 + [[ $response == [yY] ]] || exit 1 } # # BEGIN Platform definable