diff options
author | Chris Down <chris@chrisdown.name> | 2013-09-13 07:50:47 +0200 |
---|---|---|
committer | Jason A. Donenfeld <Jason@zx2c4.com> | 2013-09-14 19:20:27 +0200 |
commit | 9b27d7384e22405b109e9c3883ee9d01cfaa89ec (patch) | |
tree | 98df8527863779e04419c0f172766fd1de854862 /src/password-store.sh | |
parent | 037fa8e2326ff6dd44552e740b533b45abc9b1c4 (diff) | |
download | pass-9b27d7384e22405b109e9c3883ee9d01cfaa89ec.tar.gz pass-9b27d7384e22405b109e9c3883ee9d01cfaa89ec.tar.bz2 pass-9b27d7384e22405b109e9c3883ee9d01cfaa89ec.zip |
Use a glob in the pattern match instead of using two comparisons for [yY].
Diffstat (limited to 'src/password-store.sh')
-rwxr-xr-x | src/password-store.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh index 0e19d52..2500253 100755 --- 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 |