packages feed

shake-ext 3.1.0.1 → 3.1.0.2

raw patch · 3 files changed

+4/−4 lines, 3 files

Files

LICENSE view
@@ -1,4 +1,4 @@-Copyright Vanessa McHale (c) 2018+Copyright Vanessa McHale (c) 2018-2019  Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 
shake-ext.cabal view
@@ -1,9 +1,9 @@ cabal-version: 1.18 name: shake-ext-version: 3.1.0.1+version: 3.1.0.2 license: BSD3 license-file: LICENSE-copyright: Copyright: (c) 2018 Vanessa McHale+copyright: Copyright: (c) 2018-2019 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale bug-reports: https://hub.darcs.net/vmchale/ats/issues
src/Development/Shake/Linters.hs view
@@ -40,7 +40,7 @@ checkIdempotent s p = do     contents <- liftIO $ readFile p     (Stdout out) <- cmd (s ++ " " ++ p)-    when (trim contents /= trim out) (error $ "formatter " ++ s ++ " is not fully applied!")+    when (trim contents /= trim out) (error $ "formatter " ++ s ++ " is not fully applied to file " ++ p ++ "!")  -- | Check that given files are formatted according to @stylish-haskell@ stylishHaskell :: [FilePath] -> Action ()