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 1edb675f4a2c7eb79149e1c026ec5b186470e272
parent 6068e1e364c26218189deb32fe74e9d049dbdfa5
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Wed, 23 Apr 2014 05:26:24 +0200

tests: force creation of new creds

Diffstat:
Mtests/setup.sh | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/setup.sh b/tests/setup.sh @@ -130,10 +130,10 @@ create_cred() { local password="$1" shift echo "Using password \"$password\" for $cred" - $PASS insert -e "$cred" <<<"$password" || return 1 + $PASS insert -f -e "$cred" <<<"$password" || return 1 else echo "Generating random password for $cred" - if ! $PASS generate "${cred}" 24 > /dev/null; then + if ! $PASS generate -f "${cred}" 24 > /dev/null; then echo "Failed to create credential ${cred}" return 1 fi