We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
$ browserpass --version
I would expect browserpass to also check the default password store location of gopass (~/.local/share/gopass/stores/root) by default.
~/.local/share/gopass/stores/root
browserpass doesn't work out of the box with gopass' default store location. PASSWORD_STORE_DIR has to be set.
PASSWORD_STORE_DIR
The text was updated successfully, but these errors were encountered:
Makes sense, especially given that we explicitly say that browserpass works with pass and gopass 🙂
Would you like to take a stab at it?
This is the function to change:
browserpass-native/request/configure.go
Line 145 in 4d8abe1
This is the gopass logic:
https://github.com/gopasspw/gopass/blob/d00c29a0e8e521eb32e4564998690430dcc7dbbc/pkg/appdir/appdir_xdg.go#L39-L50
I suppose the check should be done in this priority order (return earliest match):
$PASSWORD_STORE_DIR
$GOPASS_HOMEDIR
$HOME/.password-store
$XDG_DATA_HOME/gopass/stores/root
$HOME/.local/share/gopass/stores/root
If at some point the discussion linked in #95 settles, this priority list would be extended even further.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
General information
Installed via a package manager
$ browserpass --version
): 3.0.7webstore
What should happen?
I would expect browserpass to also check the default password store location of gopass (
~/.local/share/gopass/stores/root
) by default.What happened instead?
browserpass doesn't work out of the box with gopass' default store location.
PASSWORD_STORE_DIR
has to be set.The text was updated successfully, but these errors were encountered: