From 90f1ded782d1cc24bdc758a4718b390a1b3c1505 Mon Sep 17 00:00:00 2001 From: Matěj Cepl Date: Thu, 23 Nov 2023 16:49:20 +0100 Subject: Don't exec, but run alternative pinentry. Fixes: https://todo.sr.ht/~mcepl/devel/20 --- pinentry-rofi.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pinentry-rofi.sh b/pinentry-rofi.sh index 00a1779..d64a1f6 100755 --- a/pinentry-rofi.sh +++ b/pinentry-rofi.sh @@ -234,7 +234,7 @@ if [ "$0" = "$BASH_SOURCE" ]; then if [ "$XDG_SESSION_TYPE" != "tty" ] ; then main else - exec pinentry-tty "$@" + pinentry-tty "$@" fi fi -- cgit