diff options
Diffstat (limited to 'src')
-rwxr-xr-x | src/password-store.sh | 4 |
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." |