diff options
| author | Ahmed Abdelhalim <[email protected]> | 2023-04-03 21:33:42 +0200 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2023-04-03 21:33:42 +0200 |
| commit | 43edc8a0232fda9ab8fef5f3e63eceb11a80b970 (patch) | |
| tree | 38b16bbaf4f3aa4731c0b177c407befb3aad40f6 | |
| parent | c6c7608ff8807855a0f2b6c4889c86e217c188ab (diff) | |
Fix gpg pinentry setup on Apple silicon
| -rwxr-xr-x | .gnupg/pinentry-wrapper | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.gnupg/pinentry-wrapper b/.gnupg/pinentry-wrapper index 229ad94..b160cc0 100755 --- a/.gnupg/pinentry-wrapper +++ b/.gnupg/pinentry-wrapper @@ -8,9 +8,9 @@ case $PINENTRY_USER_DATA in curses) - exec /usr/local/bin/pinentry-curses "$@" + exec $(brew --prefix)/bin/pinentry-curses "$@" ;; *) - exec /usr/local/bin/pinentry-tty "$@" + exec $(brew --prefix)/bin/pinentry-tty "$@" ;; esac |
