aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rwxr-xr-xgit-remote-gcrypt4
1 files 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
}