From: Etienne Brodu Date: Thu, 23 Mar 2017 17:57:52 +0000 (+0100) Subject: fix bug when using several options in gpg-args X-Git-Url: https://git.nutra.tk/v1?a=commitdiff_plain;h=06205b2f4f9e52e84accc4ffed176f92bdb85612;p=gamesguru%2Fgit-remote-gcrypt.git fix bug when using several options in gpg-args --- 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 }