-
-
Notifications
You must be signed in to change notification settings - Fork 496
New issue
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
[bugfix] Replace ~ with user homedir if $GOPASS_HOMEDIR is not set #2961
Conversation
Mhhh, I think this conflicts with the idea of Lines 40 to 56 in 486c165
The idea being that "~" is replaced with Furthermore, the fact that in #2916 it's working for the root store but not substores seems to hint at a deeper problem in how we handle substore vs root store paths. |
I think the deeper problem here is that
Note that bash does allow to have quoted But I think the initial idea was to be able to share a |
Does that mean I should change |
@cal-andrew Not sure if |
531d992
to
f9d788c
Compare
Does not replace ~ if neither are set. Fixes #2916 Signed-off-by: Callum Andrew <contact@candrew.net>
The PR now tries to replace ~ in |
Thank you! |
Fixes #2916