You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
linux: add option for GCM_GPG_PATH environment variable
If GCM_GPG_PATH is specified, it is assumed to be the path to the GPG
executable used by `pass` and will throw an exception if it is not found.
If GCM_GPG_PATH is _not_ specified, GCM Core will attempt to find the
correct GPG executable by mimicking the behavior (currently) used by `pass`
(that is, first searching for `gpg2`, then falling back on `gpg` if `gpg2` is
not found).
Specify the path (_including_ the executable name) to the version of `gpg` used by `pass` (`gpg2` if present, otherwise `gpg`). This is primarily meant to allow manual resolution of the conflict that occurs on legacy Linux systems with parallel installs of `gpg` and `gpg2`.
404
+
405
+
If not specified, GCM Core defaults to using the version of `gpg2` on the `$PATH`, falling back on `gpg` if `gpg2` is not found.
406
+
407
+
##### Linux
408
+
409
+
```bash
410
+
export GCM_GPG_PATH="/usr/local/bin/gpg2"
411
+
```
412
+
413
+
---
414
+
401
415
### GCM_MSAUTH_FLOW
402
416
403
417
Specify which authentication flow should be used when performing Microsoft authentication and an interactive flow is required.
0 commit comments