summaryrefslogtreecommitdiffstats
path: root/.gnupg/pinentry-wrapper
diff options
context:
space:
mode:
authorAhmed Abdelhalim <[email protected]>2025-11-07 21:34:05 +0100
committerAhmed Abdelhalim <[email protected]>2025-11-07 23:51:54 +0100
commit4d0d9a8dfd557ac88f50bd73c786c7216bb01395 (patch)
tree8289538b3e509a53bc2fe5dec697f02aebe5b606 /.gnupg/pinentry-wrapper
parentc14ee7365e42e2015ad1b549cc29f6018c5f2bdb (diff)
Fix gpg forwarding on .local machines
Diffstat (limited to '.gnupg/pinentry-wrapper')
-rwxr-xr-x.gnupg/pinentry-wrapper4
1 files changed, 2 insertions, 2 deletions
diff --git a/.gnupg/pinentry-wrapper b/.gnupg/pinentry-wrapper
index b160cc0..9964241 100755
--- a/.gnupg/pinentry-wrapper
+++ b/.gnupg/pinentry-wrapper
@@ -8,9 +8,9 @@
case $PINENTRY_USER_DATA in
curses)
- exec $(brew --prefix)/bin/pinentry-curses "$@"
+ exec pinentry-curses "$@"
;;
*)
- exec $(brew --prefix)/bin/pinentry-tty "$@"
+ exec pinentry-tty "$@"
;;
esac