summaryrefslogtreecommitdiff
path: root/Utility/Gpg.hs
diff options
context:
space:
mode:
authorGravatar Joey Hess <joeyh@joeyh.name>2015-06-03 13:02:33 -0400
committerGravatar Joey Hess <joeyh@joeyh.name>2015-06-03 13:02:33 -0400
commit2ec66372940a29de91e3650651362ae862120ea4 (patch)
tree8e7255100c98c7806356827a1e01d4dd706e3833 /Utility/Gpg.hs
parentf0e8f359fe793aa4922ba393676fe8a3db869d22 (diff)
two more breakages introduced when removing the Params constructor
Diffstat (limited to 'Utility/Gpg.hs')
-rw-r--r--Utility/Gpg.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Utility/Gpg.hs b/Utility/Gpg.hs
index 0a0b04a03..3e3a58013 100644
--- a/Utility/Gpg.hs
+++ b/Utility/Gpg.hs
@@ -339,7 +339,7 @@ testHarness a = do
dir <- mktmpdir $ base </> "gpgtmpXXXXXX"
setEnv var dir True
-- For some reason, recent gpg needs a trustdb to be set up.
- _ <- pipeStrict [Param "--trust-model auto", Param "--update-trustdb"] []
+ _ <- pipeStrict [Param "--trust-model", Param "auto", Param "--update-trustdb"] []
_ <- pipeStrict [Param "--import", Param "-q"] $ unlines
[testSecretKey, testKey]
return dir