scotty-fay 0.1.0 → 0.1.1
raw patch · 2 files changed
+3/−2 lines, 2 files
Files
- scotty-fay.cabal +1/−1
- src/Web/Scotty/Fay/Internal.hs +2/−1
scotty-fay.cabal view
@@ -1,5 +1,5 @@ name: scotty-fay-version: 0.1.0+version: 0.1.1 build-type: Simple cabal-version: >= 1.10
src/Web/Scotty/Fay/Internal.hs view
@@ -26,7 +26,8 @@ initialize conf = do let includeDirs = configIncludeDirs conf results <- getNonExistent includeDirs- warn $ nonExistentWarning results+ when (not . null $ results) $+ warn (nonExistentWarning results) getNonExistent :: [FilePath] -> IO [FilePath] getNonExistent = foldl f (return [])