Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GHC HEAD compatible build #143

Merged
merged 6 commits into from
Feb 17, 2023
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
ormolu disable
  • Loading branch information
wavewave committed Feb 16, 2023
commit 02580b2607617a4d7ee67263ecf3e7a0f7a7f9f4
10 changes: 1 addition & 9 deletions render/src/Hoodle/Util/Process.hs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
-- TODO: This file should be moved to hoodle-util.
{- ORMOLU_DISABLE -}
{-# Language CPP #-}
module Hoodle.Util.Process where

Expand Down Expand Up @@ -66,12 +67,3 @@ pipeActionWith sender receiverf = do
r <- checkPipe filename >> receiverf filename
removeLink filename
return r

{-
-- |
pipeActionSystem :: String -> (B.ByteString -> IO a) -> IO a
pipeActionSystem sendercmd receiver = do
filename <- mkTmpFileName
existThenRemove filename
createNamedPipe filename (unionFileModes ownerReadMode ownerWriteMode)
-}