narrower exception type for stack check; only a patch number bump

This commit is contained in:
Josh Berman 2016-04-20 19:48:23 +03:00
parent 1038fc0125
commit 580eb46563
2 changed files with 2 additions and 2 deletions

View File

@ -79,7 +79,7 @@ keter cabal noBuild noCopyTo buildArgs = do
unless noBuild $ do
stackQueryRunSuccess <- do
eres <- try $ readProcessWithExitCode "stack" ["query"] "" :: IO (Either SomeException (ExitCode, String, String))
eres <- try $ readProcessWithExitCode "stack" ["query"] "" :: IO (Either IOException (ExitCode, String, String))
return $ either (\_ -> False) (\(ec, _, _) -> (ec == ExitSuccess)) eres
let inStackExec = isJust $ lookup "STACK_EXE" env'

View File

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