system-linux-proc 0.1.0.2 → 0.1.0.3
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- System/Linux/Proc/IO.hs +2/−2
- system-linux-proc.cabal +1/−1
System/Linux/Proc/IO.hs view
@@ -15,7 +15,7 @@ import System.IO (IOMode (..), withFile) -import System.Directory (listDirectory)+import System.Directory (getDirectoryContents) import System.Linux.Proc.Errors @@ -29,7 +29,7 @@ listProcDirectory :: FilePath -> ExceptT ProcError IO [FilePath] listProcDirectory fpath =- handleExceptT (ProcReadError fpath . ioErrorToText) $ listDirectory fpath+ handleExceptT (ProcReadError fpath . ioErrorToText) $ getDirectoryContents fpath ioErrorToText :: IOError -> Text ioErrorToText = T.pack . show
system-linux-proc.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: system-linux-proc-version: 0.1.0.2+version: 0.1.0.3 synopsis: A library for accessing the /proc filesystem in Linux -- description: homepage: https://github.com/erikd/system-linux-proc