Undo match username to EOL: breaks read all pwds

This commit is contained in:
drduh 2016-07-11 13:23:26 -04:00 committed by GitHub
parent 42f664e920
commit 072dac54e9
1 changed files with 1 additions and 1 deletions

2
pwd.sh
View File

@ -87,7 +87,7 @@ read_pass () {
get_pass " get_pass "
Enter password to unlock ${safe}: " Enter password to unlock ${safe}: "
printf "\n\n" printf "\n\n"
decrypt ${password} ${safe} | grep " ${username}$" || fail "Decryption failed" decrypt ${password} ${safe} | grep " ${username}" || fail "Decryption failed"
} }