diff options
author | Ben Sima <ben@bsima.me> | 2021-02-17 20:28:51 -0500 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2021-02-17 20:28:51 -0500 |
commit | dda25240553486522c953e7a1f43ae67dbe2f22a (patch) | |
tree | 353ffddcac9b0b7e0d3626899b2c3aafbf08d630 /Biz | |
parent | ad3102e108562aa7c12e89991eb387cd3aa359ae (diff) |
Fixup some modules
Diffstat (limited to 'Biz')
-rw-r--r-- | Biz/Bild.hs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Biz/Bild.hs b/Biz/Bild.hs index 39d8aaf..eee7eb4 100644 --- a/Biz/Bild.hs +++ b/Biz/Bild.hs @@ -478,7 +478,10 @@ run Proc {..} = do Async.runConcurrently <| Async.Concurrently (puts stdout_) *> (Async.Concurrently <| Conduit.waitForStreamingProcess cph) - else Async.runConcurrently <| Async.Concurrently <| Conduit.waitForStreamingProcess cph + else + Async.runConcurrently + <| Async.Concurrently + <| Conduit.waitForStreamingProcess cph if isFailure exitcode then puts stderr_ >> onFailure >> return exitcode else onSuccess >> return exitcode |