From 48342c3c4e1bc8547271a899979cb42fa9c95fc1 Mon Sep 17 00:00:00 2001 From: Ranjeet Kumar Ranjan Date: Wed, 6 Jul 2022 11:46:07 +0530 Subject: [PATCH] Disable doctest --- src/Streamly/Coreutils/Chmod.hs | 2 +- streamly-coreutils.cabal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Streamly/Coreutils/Chmod.hs b/src/Streamly/Coreutils/Chmod.hs index 6b23638..5dc2f1a 100644 --- a/src/Streamly/Coreutils/Chmod.hs +++ b/src/Streamly/Coreutils/Chmod.hs @@ -68,7 +68,7 @@ chmodWith utype (Permissions r w e) path = do setOthersPermissions -- | Supports only override permissions bits --- >>> chmod [perm|a=rwx|] "a.txt" +-- >> chmod [perm|a=rwx|] "a.txt" -- chmod :: UserTypePerm -> FilePath -> IO () chmod pat = chmodWith (utype pat) (permssions pat) diff --git a/streamly-coreutils.cabal b/streamly-coreutils.cabal index 24682ee..3ca9710 100644 --- a/streamly-coreutils.cabal +++ b/streamly-coreutils.cabal @@ -92,7 +92,7 @@ library , unix >= 2.7.0 && < 2.8 , directory >= 1.2.2 && < 1.4 , data-default-class >= 0.1 && < 0.2 - , template-haskell >= 2.13.0 && < 2.19.0 + , template-haskell >= 2.10.0 && < 2.19.0 hs-source-dirs: src exposed-modules: Streamly.Coreutils