packages feed

shake 0.11.1 → 0.11.2

raw patch · 3 files changed

+4/−2 lines, 3 files

Files

CHANGES.txt view
@@ -1,5 +1,7 @@ Changelog for Shake +0.11.2+    #96, fix a bug in addPath that caused $PATH to be added twice 0.11.1     #94, GHC 7.8 support     Add a Config module
Development/Shake/Command.hs view
@@ -68,7 +68,7 @@     args <- liftIO getEnvironment     let (path,other) = partition ((== "PATH") . (if isWindows then map toUpper else id) . fst) args     return $ Env $-        [("PATH",intercalate [searchPathSeparator] $ pre ++ post) | null post] +++        [("PATH",intercalate [searchPathSeparator] $ pre ++ post) | null path] ++         [(a,intercalate [searchPathSeparator] $ pre ++ [b | b /= ""] ++ post) | (a,b) <- path] ++         other 
shake.cabal view
@@ -1,7 +1,7 @@ cabal-version:      >= 1.10 build-type:         Simple name:               shake-version:            0.11.1+version:            0.11.2 license:            BSD3 license-file:       LICENSE category:           Development