From 06205b2f4f9e52e84accc4ffed176f92bdb85612 Mon Sep 17 00:00:00 2001 From: Etienne Brodu Date: Thu, 23 Mar 2017 18:57:52 +0100 Subject: fix bug when using several options in gpg-args --- git-remote-gcrypt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/git-remote-gcrypt b/git-remote-gcrypt index 9d4efa6..3b35e1c 100755 --- a/git-remote-gcrypt +++ b/git-remote-gcrypt @@ -379,9 +379,9 @@ rungpg() # due to trying to print messages to it, even if a gpg agent is set # up. --no-tty fixes this. if [ "x$GPG_AGENT_INFO" != "x" ]; then - ${GPG} --no-tty "$@" + ${GPG} --no-tty $@ else - ${GPG} "$@" + ${GPG} $@ fi } -- cgit v1.2.3