summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/Utility/ConcurrentOutput.hs8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/Utility/ConcurrentOutput.hs b/src/Utility/ConcurrentOutput.hs
index 0e9a59de..193e757f 100644
--- a/src/Utility/ConcurrentOutput.hs
+++ b/src/Utility/ConcurrentOutput.hs
@@ -147,8 +147,12 @@ createProcessConcurrent :: P.CreateProcess -> IO (Maybe Handle, Maybe Handle, Ma
createProcessConcurrent p
| willoutput (P.std_out p) || willoutput (P.std_err p) =
ifM tryTakeOutputLock
- ( firstprocess
- , concurrentprocess
+ ( do
+ print "IS NOT CONCURRENT"
+ firstprocess
+ , do
+ print "IS CONCURRENT"
+ concurrentprocess
)
| otherwise = P.createProcess p
where