On 01/07/2017 05:08 PM, [email protected] wrote: > I don't just override my path because I would still like to use the standard gpg2 binary for most things not involving my private keys, particularly symmetric encryption.
You can do that easily by just overriding PATH for when you're invoking pass PATH=/your/custom/gpg/bin:$PATH pass or define an alias like alias pass='PATH=/your/custom/gpg/dir:$PATH pass' Then only pass will use your custom binary while normally invoking gpg will use /usr/bin/gpg or wherever your gpg binary lies. Addendum: Be sure to have both gpg and gpg2 available in that custom dir, because I think pass will use gpg2 if available anywhere. Cheers, Simon -- www.lackerbauer.com 8A86 BD14 1859 44F2 5B83 6908 4B81 EE5D 6A56 A4DE _______________________________________________ Password-Store mailing list [email protected] https://lists.zx2c4.com/mailman/listinfo/password-store
