shake-ext 2.3.0.0 → 2.3.0.1
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- shake-ext.cabal +2/−2
- src/Development/Shake/TH.hs +1/−1
shake-ext.cabal view
@@ -1,5 +1,5 @@ name: shake-ext-version: 2.3.0.0+version: 2.3.0.1 synopsis: Helper functions for linting with shake description: This package provides several linters out of the box, for use with [shake](http://shakebuild.com/). homepage: https://hub.darcs.net/vmchale/shake-ext@@ -8,7 +8,7 @@ author: Vanessa McHale maintainer: vamchale@gmail.com copyright: Copyright: (c) 2018 Vanessa McHale-category: Development+category: Development, Shake build-type: Simple extra-doc-files: README.md cabal-version: 1.18
src/Development/Shake/TH.hs view
@@ -21,7 +21,7 @@ commonVersion :: String -> Action String commonVersion prog = do- (Stdout out) <- command mempty prog ["--version"]+ ~(Stdout out) <- command mempty prog ["--version"] pure . last . words . head . lines $ out mkSigVersion :: String -> Dec