summaryrefslogtreecommitdiff
path: root/Utility
diff options
context:
space:
mode:
authorGravatar Joey Hess <joey@kitenet.net>2012-08-17 08:22:11 -0700
committerGravatar Joey Hess <joey@kitenet.net>2012-08-17 08:22:11 -0700
commitfe8fee235b11e58cfda7e8a09e120b0daabe3f43 (patch)
tree867d1106431f6a1f9e4515ca48ded7d0c8765239 /Utility
parent211bcd11bd3b2409c43564891c4422081f7ad30e (diff)
Pass --use-agent to gpg when in no tty mode. Thanks, Eskild Hustvedt.
Diffstat (limited to 'Utility')
-rw-r--r--Utility/Gpg.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Gpg.hs b/Utility/Gpg.hs
index e13afe5d4..c28b20968 100644
--- a/Utility/Gpg.hs
+++ b/Utility/Gpg.hs
@@ -29,7 +29,7 @@ stdParams params = do
b <- getEnv "GPG_BATCH"
let batch = if isNothing e && isNothing b
then []
- else ["--batch", "--no-tty"]
+ else ["--batch", "--no-tty", "--use-agent"]
return $ batch ++ defaults ++ toCommand params
where
-- be quiet, even about checking the trustdb