Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
tanakh committed Mar 19, 2012
1 parent d9aa84f commit 1297c4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions System/Process/QQ.hs
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ cmd = def { quoteExp = \str -> [|

-- | Source of shell command
scmd :: QuasiQuoter
scmd = def { quoteExp = \str -> [| sourceCmd $(quoteExp lt str) |] }
scmd = def { quoteExp = \str -> [| sourceCmd (LT.unpack $(quoteExp lt str)) |] }

-- | Conduit of shell command
ccmd :: QuasiQuoter
ccmd = def { quoteExp = \str -> [| conduitCmd $(quoteExp lt str) |] }
ccmd = def { quoteExp = \str -> [| conduitCmd (LT.unpack $(quoteExp lt str)) |] }
2 changes: 1 addition & 1 deletion process-conduit.cabal
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Name: process-conduit
Version: 0.0.4
Version: 0.0.5
Synopsis: Conduits for processes

Description:
Expand Down

0 comments on commit 1297c4d

Please sign in to comment.