aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-09-22 19:47:55 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-22 19:47:55 +0200
commit05a219587336d51203196f5f809d1c5d9d93af7c (patch)
tree62995a640dca6859158eb08fa6c8cec4f14e2b94 /src
parentI don't want --help or --version in bash completion. (diff)
downloadpassword-store-05a219587336d51203196f5f809d1c5d9d93af7c.tar.xz
password-store-05a219587336d51203196f5f809d1c5d9d93af7c.zip
Allow git repo to be elsewhere via env var.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/password-store.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index 21f8fe4..b28e408 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -7,11 +7,11 @@ umask 077
PREFIX="${PASSWORD_STORE_DIR:-$HOME/.password-store}"
ID="$PREFIX/.gpg-id"
-GIT_DIR="$PREFIX/.git"
+GIT_DIR="${PASSWORD_STORE_GIT:-$PREFIX}/.git"
GPG_OPTS="--quiet --yes --batch"
export GIT_DIR
-export GIT_WORK_TREE="$PREFIX"
+export GIT_WORK_TREE="${PASSWORD_STORE_GIT:-$PREFIX}"
version() {
cat <<_EOF