aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2012-09-21 17:23:08 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2012-09-21 17:23:08 +0200
commit9dcae25e1aa627347fccab133617412628f07d7c (patch)
tree3478c9424160ce00ee2c303431d9667417307099 /src
parentReformat bash completion and add missing options. (diff)
downloadpassword-store-9dcae25e1aa627347fccab133617412628f07d7c.tar.xz
password-store-9dcae25e1aa627347fccab133617412628f07d7c.zip
Add support for PASSWORD_STORE_KEY env var.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/password-store.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/password-store.sh b/src/password-store.sh
index f137f55..21f8fe4 100755
--- a/src/password-store.sh
+++ b/src/password-store.sh
@@ -175,7 +175,9 @@ case "$command" in
;;
esac
-if ! [[ -f $ID ]]; then
+if [[ -n $PASSWORD_STORE_KEY ]]; then
+ ID="$PASSWORD_STORE_KEY"
+elif ! [[ -f $ID ]]; then
echo "You must run:"
echo " $program init your-gpg-id"
echo "before you may use the password store."