Use PASSWORD_STORE_DIR in auth-source-pass when set
* lisp/auth-source-pass.el (auth-source-pass-filename): Initialize to PASSWORD_STORE_DIR environment variable when set. (Bug#29663)
This commit is contained in:
parent
6297eb0fca
commit
6b2745fe2e
1 changed files with 2 additions and 1 deletions
|
@ -45,7 +45,8 @@
|
|||
:group 'auth-source
|
||||
:version "27.1")
|
||||
|
||||
(defcustom auth-source-pass-filename "~/.password-store"
|
||||
(defcustom auth-source-pass-filename
|
||||
(or (getenv "PASSWORD_STORE_DIR") "~/.password-store")
|
||||
"Filename of the password-store folder."
|
||||
:type 'directory
|
||||
:version "27.1")
|
||||
|
|
Loading…
Add table
Reference in a new issue