shellmate 0.1.2 → 0.1.3
raw patch · 2 files changed
+3/−3 lines, 2 files
Files
- Control/Shell.hs +2/−2
- shellmate.cabal +1/−1
Control/Shell.hs view
@@ -11,7 +11,7 @@ run, run_, runInteractive, genericRun, sudo, cd, cpDir, pwd, ls, mkdir, rmdir, inDirectory, isDirectory, withHomeDirectory, inHomeDirectory, withAppDirectory, inAppDirectory,- forEachFile, cpFilter,+ forEachFile, cpFiltered, isFile, rm, mv, cp, file, withTempFile, withTempDirectory, inTempDirectory, hPutStr, hPutStrLn, echo,@@ -300,7 +300,7 @@ mapM_ ((`cp` to') . (from </>)) (filter pred files) fromdirs <- filterM (\d -> isDirectory (from </> d)) files forM_ fromdirs $ \dir -> do- cpFilter pred (from </> dir) (to </> dir)+ cpFiltered pred (from </> dir) (to </> dir) -- | Perform an action on each file in the given directory. -- This function will traverse any subdirectories of the given as well.
shellmate.cabal view
@@ -1,5 +1,5 @@ name: shellmate-version: 0.1.2+version: 0.1.3 synopsis: Simple interface for shell scripting in Haskell. -- description: homepage: http://github.com/valderman/shellmate