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 5150bc2eaa1e1e8d1430414c79b8d0ef033eba31
parent d73ca39465717a9a63aa94ef8a110066c2d1a21e
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Thu, 24 Apr 2014 23:59:56 +0200

tests: remember to escape $

Diffstat:
Mtests/fake-editor-change-password.sh | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/fake-editor-change-password.sh b/tests/fake-editor-change-password.sh @@ -20,6 +20,6 @@ new_password="${FAKE_EDITOR_PASSWORD:-Hello World}" # And change only first line of file # -i.tmp allows editing file in place. Extension needed on Mac OSX -sed -i.tmp "1 s/^.*$/$new_password/g" "$filename" +sed -i.tmp "1 s/^.*\$/$new_password/g" "$filename" exit 0