summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJoey Hess2014-11-18 16:03:19 -0400
committerJoey Hess2014-11-18 16:03:19 -0400
commit6f93f8496f806ce1ebb5252bea53b27495ba3366 (patch)
tree2a9dbe6daa820b9155f99459d5a6950d0cf47cbc /src
parente27e1cf3d1f9578a1ce6848f86e332a3a9eb356d (diff)
use lazy bytestrings so it streams
Diffstat (limited to 'src')
-rw-r--r--src/Propellor/CmdLine.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Propellor/CmdLine.hs b/src/Propellor/CmdLine.hs
index a41314f5..ea2fadad 100644
--- a/src/Propellor/CmdLine.hs
+++ b/src/Propellor/CmdLine.hs
@@ -12,7 +12,7 @@ import Control.Exception (bracket)
import System.Posix.IO
import Data.Time.Clock.POSIX
import Control.Concurrent.Async
-import qualified Data.ByteString as B
+import qualified Data.ByteString.Lazy as B
import System.Process (std_in, std_out)
import Propellor