diff options
author | Joey Hess <joey@kitenet.net> | 2013-09-06 17:05:41 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2013-09-06 17:05:41 -0400 |
commit | 5195fbe8ba2771abd15df5d55d1716b6b1e4d266 (patch) | |
tree | f509620c819f536519b5f7e3c6609892fc35a67e /Utility/Gpg.hs | |
parent | 83b9820c2eb20f7f25a9b49c8d80e919658104e8 (diff) |
fix windows build
Diffstat (limited to 'Utility/Gpg.hs')
-rw-r--r-- | Utility/Gpg.hs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Utility/Gpg.hs b/Utility/Gpg.hs index 251e4d443..faf6889a3 100644 --- a/Utility/Gpg.hs +++ b/Utility/Gpg.hs @@ -115,8 +115,8 @@ feedRead params passphrase feeder reader = do withTmpFile "gpg" $ \tmpfile h -> do hPutStr h passphrase hClose h - let passphrasefile = [Param "--passphrase-file", File tmpfile] - go $ passphrasefile ++ params + let passphrasefile = [Param "--passphrase-file", File tmpfile] + go $ passphrasefile ++ params #endif where go params' = pipeLazy params' feeder reader |