shelly 1.6.3 → 1.6.3.1
raw patch · 2 files changed
+3/−3 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- shelly.cabal +1/−1
- test/src/RunSpec.hs +2/−2
shelly.cabal view
@@ -1,6 +1,6 @@ Name: shelly -Version: 1.6.3+Version: 1.6.3.1 Synopsis: shell-like (systems) programming in Haskell Description: Shelly provides convenient systems programming in Haskell,
test/src/RunSpec.hs view
@@ -42,9 +42,9 @@ it "can detect failing commands in pipes" $ do eCode <- shelly $ escaping False $ errExit False $ do- bash_ "echo" [ "'foo'", "|", "ls", "\"eoueouoe\"", "|", "echo", "'bar'" ]+ bash_ "echo" [ "'foo'", "|", "ls", "\"eoueouoe\"", "2>/dev/null", "|", "echo", "'bar'" ] lastExitCode- eCode @?= 1+ eCode `shouldSatisfy` (/= 0) it "preserve pipe behaviour" $ do (eCode, res) <- shelly $ escaping False $ errExit False $ do