Explorar el Código

compat for PASSWORD_STORE_DIR

tags/v3.1
Luke Smith hace 5 años
padre
commit
7c1da4d168
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: 4C50B54A911F6252
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. +3
    -2
      bin/mw

+ 3
- 2
bin/mw Ver fichero

@@ -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
}


Cargando…
Cancelar
Guardar