Browse Source

compat for PASSWORD_STORE_DIR

tags/v3.1
Luke Smith 5 years ago
parent
commit
7c1da4d168
No known key found for this signature in database GPG Key ID: 4C50B54A911F6252
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      bin/mw

+ 3
- 2
bin/mw View File

@@ -1,7 +1,8 @@
#!/bin/sh
command -V gpg >/dev/null 2>&1 && GPG="gpg" || GPG="gpg2"
[ -r "$HOME/.password-store/.gpg-id" ] &&
"$GPG" --list-secret-keys $(cat "$HOME/.password-store/.gpg-id") >/dev/null 2>&1 || {
[ -z ${PASSWORD_STORE_DIR+x} ] && PASSWORD_STORE_DIR="$HOME/.password-store"
[ -r "$PASSWORD_STORE_DIR/.gpg-id" ] &&
"$GPG" --list-secret-keys $(cat "$PASSWORD_STORE_DIR/.gpg-id") >/dev/null 2>&1 || {
printf "\`pass\` must be installed and initialized to encrypt passwords.\\nBe sure it is installed and run \`pass init <yourgpgemail>\`.\\nIf you don't have a GPG public private key pair, run \`$GPG --full-gen-key\` first.\\n"
exit
}


Loading…
Cancel
Save