From 43edc8a0232fda9ab8fef5f3e63eceb11a80b970 Mon Sep 17 00:00:00 2001 From: Ahmed Abdelhalim Date: Mon, 3 Apr 2023 21:33:42 +0200 Subject: Fix gpg pinentry setup on Apple silicon --- .gnupg/pinentry-wrapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.gnupg') 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 -- cgit v1.2.3