diff options
| author | Joey Hess <joeyh@joeyh.name> | 2015-10-27 23:48:37 -0400 |
|---|---|---|
| committer | Joey Hess <joeyh@joeyh.name> | 2015-10-27 23:48:37 -0400 |
| commit | cd8140989fa18b38f5ede23bf369afd6c56b19f8 (patch) | |
| tree | e38cad12532fc07128d7bd5188c7765de5ace312 /src/Utility/Process/Shim.hs | |
| parent | 51b397d0415e1efe1df412842ccb76d702140f50 (diff) | |
propellor spin
Diffstat (limited to 'src/Utility/Process/Shim.hs')
| -rw-r--r-- | src/Utility/Process/Shim.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Utility/Process/Shim.hs b/src/Utility/Process/Shim.hs new file mode 100644 index 00000000..0da93bf7 --- /dev/null +++ b/src/Utility/Process/Shim.hs @@ -0,0 +1,8 @@ +module Utility.Process.Shim (module X, createProcess) where + +import System.Process as X hiding (createProcess) +import Propellor.Message (createProcessConcurrent) +import System.IO + +createProcess :: CreateProcess -> IO (Maybe Handle, Maybe Handle, Maybe Handle, ProcessHandle) +createProcess = createProcessConcurrent |
