Fix a build failure

This commit is contained in:
Michael Snoyman 2016-11-29 13:51:02 +02:00
parent 2c4e19e0b6
commit 58407c292e
3 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,7 @@
## 1.5.0.1
* Fix build failure
## 1.5.0
Rewrite of `yesod devel` to take advantage of Stack for a simpler codebase.

View File

@ -320,8 +320,8 @@ devel opts passThroughArgs = do
-- make sure that all content to stdout or stderr from the build
-- process is piped to the actual stdout and stderr handles.
withProcess_ procConfig $ \p -> do
let helper getter h = runConduit
$ getter p
let helper getter h =
getter p
$$ CL.iterM (\_ -> atomically $ writeTVar appPortVar (-1))
=$ CB.sinkHandle h
race_ (helper getStdout stdout) (helper getStderr stderr)

View File

@ -1,5 +1,5 @@
name: yesod-bin
version: 1.5.0
version: 1.5.0.1
license: MIT
license-file: LICENSE
author: Michael Snoyman <michael@snoyman.com>