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 60e1fa752f218616e04648a21578fe346fe36a6d
parent dcb6d7e95db06343caa5ad3075734603d27769c3
Author: Jason A. Donenfeld <Jason@zx2c4.com>
Date:   Wed, 19 Mar 2014 23:37:19 -0600

Simplify exports.

Diffstat:
Msrc/password-store.sh | 7+++----
1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/src/password-store.sh b/src/password-store.sh @@ -5,13 +5,12 @@ umask 077 -PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" -GIT_DIR="${PASSWORD_STORE_GIT:-$PREFIX}/.git" GPG_OPTS="--quiet --yes --batch --compress-algo=none" - -export GIT_DIR +PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}" +export GIT_DIR="${PASSWORD_STORE_GIT:-$PREFIX}/.git" export GIT_WORK_TREE="${PASSWORD_STORE_GIT:-$PREFIX}" + version() { cat <<_EOF |-----------------------|